This repository has been archived by the owner on Jan 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also uploaded to pypi as https://pypi.org/project/ulozto-downloader/ Closes #1
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
requests | ||
Pillow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/python3 | ||
|
||
from distutils.core import setup | ||
import setuptools # noqa | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name='ulozto_downloader', | ||
version='1.2', | ||
license='MIT', | ||
description='Uloz.to quick multiple sessions downloader.', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author='Jiří Setnička', | ||
author_email='[email protected]', | ||
url='https://github.com/setnicka/ulozto_downloader', | ||
download_url='https://github.com/setnicka/ulozto_downloader/archive/1.1.tar.gz', | ||
install_requires=[ | ||
'requests', | ||
'Pillow', | ||
], | ||
python_requires='>=3.5', | ||
classifiers=[ | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3', | ||
], | ||
) |