forked from cloudtools/troposphere
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 668 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 668 Bytes
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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='troposphere',
version='2.3.3',
description="AWS CloudFormation creation library",
long_description=readme(),
author="Mark Peek",
author_email="mark@peek.org",
url="https://github.com/cloudtools/troposphere",
license="New BSD license",
packages=['troposphere', 'troposphere.openstack', 'troposphere.helpers'],
scripts=['scripts/cfn', 'scripts/cfn2py'],
install_requires=["cfn_flip>=1.0.2"],
test_suite="tests",
tests_require=["awacs"],
extras_require={'policy': ['awacs']},
use_2to3=True,
)