-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
77 lines (67 loc) · 1.88 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python
"""The setup script."""
from setuptools import find_packages
from setuptools import setup
with open("README.md") as readme_file:
readme = readme_file.read()
with open("HISTORY.md") as history_file:
history = history_file.read()
requirements = (
"Click>=8.1.7",
"aiohttp>=3.8.6",
"more-itertools>=10.1.0",
"pip>=22",
"tqdm>=4.66.1",
)
test_requirements = ("pytest>=7.4.2",)
dev_requirements = (
"Sphinx>=1.8.5",
"black>=23.9.1",
"bump2version>=1.0.1",
"coverage>=7.3.2",
"flake8>=6.1.0",
"isort>=5.12.0",
"pip>=22.3.1",
"pre-commit>=3.4.0",
"tox>=4.11.3",
"twine>=4.0.2",
"watchdog>=3.0.0",
"wheel>=0.33.6",
)
setup(
author="danny crasto",
author_email="[email protected]",
python_requires=">=3.10",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
description="Uses coroutines to download files",
entry_points={
"console_scripts": [
"async_download=async_download.cli:main",
],
},
install_requires=requirements,
license="MIT license",
long_description_content_type="text/markdown",
long_description=readme + "\n\n" + history,
include_package_data=True,
keywords="async_download",
name="async_download",
packages=find_packages(include=["async_download", "async_download.*"]),
test_suite="tests",
tests_require=test_requirements,
extras_require={
"dev": dev_requirements,
"testing": test_requirements,
},
url="https://github.com/danwald/async_download",
version="1.4.0",
zip_safe=False,
)