-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
50 lines (45 loc) · 1.22 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
"""
nubo
----
An easy way to deploy Linux VMs on different cloud providers.
Links
`````
* `GitHub Repository <https://github.com/ema/nubo>`_
* `Development Version
<http://github.com/ema/nubo/zipball/master#egg=nubo-dev>`_
"""
from setuptools import setup
install_requires = [
'setuptools',
'apache-libcloud',
'paramiko',
'texttable'
]
try:
import importlib
except ImportError:
install_requires.append('importlib')
setup(
name='nubo',
version='0.7',
url='http://pythonhosted.org/nubo',
license='BSD',
author='Emanuele Rocca',
author_email='[email protected]',
description='Virtual Machine deployments on multiple cloud providers',
long_description=__doc__,
install_requires=install_requires,
packages=['nubo', 'nubo.clouds'],
scripts=['scripts/nubo'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Internet',
'Topic :: System',
],
keywords='cloud vm startup devops ec2 rackspace linode',
)