forked from ks3sdk/ks3-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 968 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
30
31
32
33
34
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.md', 'rb') as f:
readme = f.read().decode('utf-8')
setup(
name='ks3sdk',
version='1.0.10',
description='Kingsoft Standard Storage Service SDK',
long_description=readme,
packages=['ks3'],
install_requires=[
'six',
'pycrypto==2.6.1'
],
include_package_data=True,
url='https://github.com/ks3sdk/ks3-python-sdk',
author='ksc_ks3',
author_email='[email protected]',
license='MIT',
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.6',
'Programming Language :: Python :: 2.7'
]
)