-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
43 lines (40 loc) · 1.42 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
# coding: utf-8
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = dict()
with open('kpfuse/version.py') as f:
code = compile(f.read(), 'version.py', 'exec')
exec(code, version)
setup(name='kpfuse',
version=version['__version__'],
description='FUSE File System for Cloud Drive in kuaipan.cn',
long_description=version['__changes__'] + open('README.md').read(),
keywords=['Cloud Drive', 'FUSE', 'File System'],
author=version['__author__'],
author_email=version['__email__'],
url=version['__url__'],
packages=['kpfuse'],
package_data={'kpfuse': ['*.json']},
entry_points={
'console_scripts': [
'kpfs=kpfuse.launch:main',
]
},
install_requires=['fusepy', 'oauthlib', 'requests', 'requests-oauthlib'],
license=version['__license__'],
platforms=['Linux'],
classifiers=[
'Development Status :: ' + version['__status__'],
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
],
)