forked from kolanos/vaporize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (38 loc) · 1.28 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
VERSION = '0.2.1'
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ''
setup(
name='vaporize',
description='A clean and consistent library for the Rackspace Cloud / OpenStack',
long_description=read('README.rst'),
author='Michael Lavers',
author_email='[email protected]',
url='https://github.com/kolanos/vaporize',
version=VERSION,
license='MIT',
install_requires=['python-dateutil', 'requests'],
tests_require=['nose'],
test_suite='nose.collector',
packages=['vaporize'],
keywords="rackspace openstack cloudservers cloudloadblancers clouddns",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Distributed Computing',
'Topic :: Utilities',
],
)