-
Notifications
You must be signed in to change notification settings - Fork 104
/
setup.py
61 lines (57 loc) · 1.77 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
#!/usr/bin/env python3.7
# -*- coding: utf-8 -*-
import setuptools
import CDNDrive
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
install_requires = fh.read().splitlines()
setuptools.setup(
name="CDNDrive",
version=CDNDrive.__version__,
url="https://github.com/apachecn/CDNDrive",
author=CDNDrive.__author__,
author_email=CDNDrive.__email__,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: Other/Proprietary License",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Communications :: File Sharing",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Utilities",
],
description="☁️ CDNDrive,支持任意文件的全速上传与下载",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=[
"cdn",
"cloud",
"picbed",
"disk",
"drive",
"storage",
"pan",
"yun",
"网盘",
"图床",
"云",
],
install_requires=install_requires,
python_requires=">=3.6",
entry_points={
'console_scripts': [
"CDNDrive=CDNDrive.__main__:main",
"cdrive=CDNDrive.__main__:main",
],
},
packages=setuptools.find_packages(),
)