-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
executable file
·35 lines (30 loc) · 958 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
30
31
32
33
34
from setuptools import setup, find_packages
setup(
name='rainbow-cfn',
version='0.5',
description='Rainbow is AWS Cloudformation on steroids',
author='EverythingMe',
author_email='[email protected]',
url='http://github.com/EverythingMe/rainbow',
packages=find_packages(),
install_requires=['boto', 'PyYAML'],
extras_require={
'test': ['nose', 'coverage', 'mock']
},
entry_points={
'console_scripts': [
'rainbow = rainbow.main:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Clustering',
'Topic :: System :: Systems Administration',
'Topic :: Utilities'
]
)