forked from softlayer/softlayer-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (53 loc) · 1.79 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from __future__ import print_function
import codecs
import os
from setuptools import setup, find_packages
DESCRIPTION = "A library for SoftLayer's API"
if os.path.exists('README.rst'):
with codecs.open('README.rst', 'r', 'utf-8') as readme_file:
LONG_DESCRIPTION = readme_file.read()
else:
LONG_DESCRIPTION = DESCRIPTION
setup(
name='SoftLayer',
version='5.2.1',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author='SoftLayer Technologies, Inc.',
author_email='[email protected]',
packages=find_packages(exclude=['tests']),
license='MIT',
zip_safe=False,
url='http://github.com/softlayer/softlayer-python',
entry_points={
'console_scripts': [
'slcli = SoftLayer.CLI.core:main',
'sl = SoftLayer.CLI.deprecated:main',
],
},
install_requires=[
'six >= 1.7.0',
'prettytable >= 0.7.0',
'click >= 5',
'requests >= 2.7.0',
'prompt_toolkit >= 0.53',
'pygments >= 2.0.0',
],
keywords=['softlayer', 'cloud'],
classifiers=[
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
)