-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
45 lines (42 loc) · 1.29 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
from setuptools import setup, find_packages
DESCRIPTION = "A concurrent pure python download manager"
with open("README.md", "r") as f:
LONG_DESCRIPTION = f.read()
with open("pypdl/__init__.py", "r") as f:
VERSION = f.readline().split("=")[1].strip().strip("\"'")
setup(
name="pypdl",
version=VERSION,
author="mjishnu",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
url="https://github.com/mjishnu/pypdl",
license="MIT",
classifiers={
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
},
packages=find_packages(),
install_requires=["aiohttp", "aiofiles"],
keywords=[
"python",
"downloader",
"multi-threaded-downloader",
"concurrent-downloader",
"parallel-downloader",
"async-downloader",
"asyncronous-downloader",
"download-manager",
"fast-downloader",
"download-accelerator",
"download-optimizer",
"download-utility",
"download-tool",
"download-automation",
],
python_requires=">=3.8",
)