-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·51 lines (46 loc) · 1.96 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
46
47
48
49
50
51
# flake8: noqa: E501
from codecs import open
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pyDownload', # Required
version='0.0.1', # Required
description='A simple package for multithreaded downloading', # Required
long_description=long_description, # Optional
long_description_content_type='text/markdown', # Optional (see note above)
url='https://github.com/party98/Python-Parallel-Downloader', # Optional
author='Parth Verma', # Optional
author_email='[email protected]', # Optional
classifiers=[ # Optional
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='downloading multithreaded parallel multithreading multithreaded-downloading download', # Optional
packages=find_packages(
exclude=['contrib', 'docs', 'tests', '.*', 'requirements.txt']), # Required
install_requires=['requests>=2.18.0',
'progressbar2>=3.37.1', 'enum34'], # Optional
extras_require={ # Optional
'dev': ['pre-commit==1.8.2'],
'test': ['nose', 'coverage'],
},
entry_points={ # Optional
'console_scripts': [
'pyDownload = pyDownload.__main__:main',
],
},
project_urls={ # Optional
'Bug Reports': 'https://github.com/party98/Python-Parallel-Downloader/issues',
'Say Thanks!': 'https://saythanks.io/to/party98',
'Source': 'https://github.com/party98/Python-Parallel-Downloader',
},
)