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
34 lines (31 loc) · 976 Bytes
/
setup.py
File metadata and controls
34 lines (31 loc) · 976 Bytes
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
import distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup
import sys
# Python 3 conversion
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
setup(
name = 'SoftLayer',
version = '1.1',
description = "A library to contact SoftLayer's backend services",
author = 'SoftLayer Technologies, Inc.',
packages = [
'SoftLayer',
],
license = 'The BSD License',
url = 'http://github.com/softlayer/softlayer-api-python-client',
classifiers = [
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: The BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
**extra
)