forked from ly0/baidupcsapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (44 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
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__title__ = 'baidupcsapi'
__version__ = '0.3.8'
__author__ = 'liyangjie,mozillazg,capric8416,a1exwang'
__license__ = 'MIT'
from setuptools import setup
requirements = [
'requests>=1.1.0',
'requests_toolbelt>=0.1.2',
'rsa>=3.1.4'
]
packages = [
'baidupcsapi',
]
def long_description():
return open('README.rst').read()
setup(
name='baidupcsapi',
version=__version__,
description='百度网盘API',
url='https://github.com/ly0/baidupcsapi',
download_url='https://github.com/ly0/baidupcsapi',
author=__author__,
author_email='[email protected],[email protected]',
license=__license__,
packages=packages,
package_data={'': ['LICENSE.txt']},
package_dir={'baidupcsapi': 'baidupcsapi'},
include_package_data=True,
install_requires=requirements,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities',
],
keywords='百度网盘, 百度云, API',
)