forked from softlayer/softlayer-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
69 lines (63 loc) · 2 KB
/
setup.py
File metadata and controls
69 lines (63 loc) · 2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from setuptools import setup, find_packages
import sys
import os
# Python 3 conversion
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
requires = ['distribute', 'prettytable', 'docopt==0.6.1']
if sys.version_info < (2, 7):
requires.append('importlib')
elif sys.version_info >= (2, 6):
requires.append('requests')
if sys.version_info <= (2, 6):
requires.append('simplejson')
description = "A library to use SoftLayer's API"
if os.path.exists('README.md'):
f = open('README.md')
try:
long_description = f.read()
finally:
f.close()
else:
long_description = description
setup(
name='SoftLayer',
version='2.1.0',
description=description,
long_description=long_description,
author='SoftLayer Technologies, Inc.',
packages=find_packages(),
license='The BSD License',
zip_safe=False,
url='http://github.com/softlayer/softlayer-api-python-client',
entry_points={
'console_scripts': [
'sl = SoftLayer.CLI.core:main',
],
},
package_data={
'SoftLayer': ['tests/fixtures/*'],
},
install_requires=requires,
classifiers=[
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
**extra
)