-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
26 lines (24 loc) · 950 Bytes
/
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
from setuptools import setup, find_packages
setup(
name = "DriveDownloader",
version = "1.6.0.post1",
keywords = ("drivedownloader", "drive", "netdrive", "download"),
description = "A Python netdrive downloader.",
long_description = "A Python netdrive downloader.",
license = "MIT Licence",
url = "https://github.com/hwfan",
author = "hwfan",
author_email = "[email protected]",
packages = find_packages(),
include_package_data = True,
platforms = "any",
install_requires = ['argparse', 'requests', 'tqdm', 'rich', 'pysocks', 'requests_random_user_agent',
"google-api-python-client >= 1.12.5", "six >= 1.13.0", "oauth2client >= 4.0.0",
"PyYAML >= 3.0", "pyOpenSSL >= 19.1.0"],
scripts = [],
entry_points = {
'console_scripts': [
'ddl = DriveDownloader.downloader:simple_cli'
]
}
)