-
Notifications
You must be signed in to change notification settings - Fork 65
/
setup.py
70 lines (67 loc) · 2.35 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
import pathlib
from setuptools import setup
from aliyunpan.about import __version__
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
install_requires = []
with open('requirements.txt', 'r') as f:
while True:
req = f.readline()
if not req:
break
install_requires.append(req.strip('\n'))
setup(
name='aliyunpan',
version=__version__,
description='aliyunpan cli',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/wxy1343/aliyunpan',
author='wxy1343',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Environment :: Console',
'Environment :: Console :: Curses',
'Framework :: Flask',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Multimedia',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Video',
'Topic :: Communications :: File Sharing',
'Topic :: Utilities',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
],
keywords='aliyunpan, aliyundrive, cli, tui',
py_modules=["aliyunpan"],
packages=['aliyunpan', 'aliyunpan/api', 'aliyunpan/cli', 'dlnap/dlnap'],
python_requires='>=3.6, <4',
install_requires=install_requires,
data_files=[
'requirements.txt'
],
entry_points={
'console_scripts': [
'aliyunpan-cli=aliyunpan.main:main',
'aliyunpan=aliyunpan.main:main',
],
},
project_urls={
'Bug Reports': 'https://github.com/wxy1343/aliyunpan/issues',
'Funding': 'https://donate.pypi.org',
'Say Thanks!': 'https://saythanks.io/to/[email protected]',
'Source': 'https://github.com/wxy1343/aliyunpan',
},
zip_safe=False
)