-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
29 lines (27 loc) · 855 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
27
28
29
from setuptools import setup
def long_description():
try:
return open('README.txt').read()
except IOError:
return """Yet another qiniu cloud storeage Python SDK
github: https://github.com/yueyoum/seven-cow
"""
setup(
name = 'sevencow',
version = '0.2.0',
license = 'BSD',
install_requires = ['requests'],
py_modules = ['sevencow'],
author = 'Wang Chao',
author_email = '[email protected]',
url = 'https://github.com/yueyoum/seven-cow',
description = 'Yet another qiniu cloud storage Python SDK',
long_description = long_description(),
classifiers = [
'Development Status :: 4 - Beta',
'Topic :: Internet',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)