forked from setnicka/ulozto-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python3
from distutils.core import setup
import setuptools # noqa
from uldlib import __version__
with open("README.md", "r", encoding='utf8') as fh:
long_description = fh.read()
setup(
name='ulozto-downloader',
version=__version__,
license='MIT',
description='Uloz.to quick multiple sessions downloader.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Jiří Setnička and Vlado Driver',
author_email='[email protected]',
url='https://github.com/setnicka/ulozto-downloader',
package_data={'': ['model.tflite']},
install_requires=[
'requests',
'Pillow',
'ansicolors',
'numpy',
'pysocks',
'stem',
],
extras_require={
"auto-captcha": ["tflite-runtime"],
},
python_requires='>=3.7',
packages=setuptools.find_packages(),
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': [
'ulozto-downloader = uldlib.cmd:run',
'uld = uldlib.cmd:run',
]
}
)