Skip to content
This repository has been archived by the owner on Jan 27, 2024. It is now read-only.

Commit

Permalink
Added setup.py and requirements.txt
Browse files Browse the repository at this point in the history
Also uploaded to pypi as https://pypi.org/project/ulozto-downloader/

Closes #1
  • Loading branch information
setnicka committed Dec 12, 2019
1 parent 7c791d5 commit 6818d94
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
requests
Pillow
29 changes: 29 additions & 0 deletions setup.py
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',
],
)

0 comments on commit 6818d94

Please sign in to comment.