-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (42 loc) · 1.36 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (42 loc) · 1.36 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
try:
import setuptools
setup = setuptools.setup
except ImportError:
setuptools = None
from distutils.core import setup
packages = [
'speedycloud',
'speedycloud.object_storage',
]
if sys.version_info < (2, 6):
error = 'ERROR: speedycloud-python-sdk requires Python Version 2.6 or above.'
print >> sys.stderr, error
sys.exit(1)
setup(
name='speedycloud-python-sdk',
version='1.0',
description='SpeedyCloud Object Storage Python SDK',
long_description='see:\nhttps://github.com/speedycloud/python-sdk\n',
author='Beijing SpeedyCloud Technology Co., Ltd.',
author_email='sdk@speedycloud.cn',
maintainer_email='support@speedycloud.cn',
license='MIT',
url='https://github.com/speedycloud/python-sdk',
platforms='any',
packages=packages,
classifiers=[
'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',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=['lxml'],
)