forked from softlayer/jumpgate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 773 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
from setuptools import setup, find_packages
setup(
name='jumpgate',
version='0.1',
description='OpenStack Transation Layer for cloud providers',
long_description=open('README.rst', 'r').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.3',
],
author_email='[email protected]',
url='http://sldn.softlayer.com',
license='MIT',
packages=find_packages(exclude=['*.tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'falcon>=0.1.8',
'requests',
'six>=1.4.1',
'oslo.config>=1.2.0',
'softlayer',
'pycrypto',
'iso8601',
],
setup_requires=[],
test_suite='nose.collector',
)