-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.01 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
'''
@author: David Losada Carballo <[email protected]>
'''
from setuptools import setup, find_packages
setup(
name = "cloudcast",
version = "0.1.2",
packages = find_packages(),
package_data = {
# Script files that contain initial bootstrap sequences
'cloudcast.iscm': ['scripts/*']
},
install_requires = ['dq>=0.1.2', 'fs>=0.5.0', 'PyYAML>=3.11'],
description = ("Easy and powerful stack templates for AWS CloudFormation"),
author = "David Losada Carballo",
author_email = "[email protected]",
license = 'MIT',
keywords = "aws internet cloud cloudformation deployment automation",
long_description = open('README.md').read(),
url = "http://github.com/tuxpiper/cloudcast",
zip_safe = False,
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: System",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python"
],
)