forked from cloudtools/stacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (50 loc) · 1.25 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
51
52
53
54
55
56
57
58
59
60
import os
from setuptools import setup, find_packages
VERSION = "1.1.3"
src_dir = os.path.dirname(__file__)
install_requires = [
"troposphere>=1.9.0",
"boto3>=1.3.1,<1.5.0",
"PyYAML~=3.12",
"awacs>=0.6.0",
"colorama~=0.3.7",
"formic~=0.9b",
"gitpython~=2.0",
"schematics~=2.0.1",
"python-dateutil~=2.0"
]
tests_require = [
"mock~=2.0.0",
"moto~=1.1.24",
"testfixtures~=4.10.0",
"coverage~=4.3.4"
]
setup_requires = [
"nose",
]
scripts = [
"scripts/compare_env",
"scripts/docker-stacker",
"scripts/stacker"
]
def read(filename):
full_path = os.path.join(src_dir, filename)
with open(full_path) as fd:
return fd.read()
if __name__ == "__main__":
setup(
name="stacker",
version=VERSION,
author="Michael Barrett",
author_email="loki77@gmail.com",
license="New BSD license",
url="https://github.com/remind101/stacker",
description="AWS CloudFormation Stack manager",
long_description=read("README.rst"),
packages=find_packages(),
scripts=scripts,
install_requires=install_requires,
tests_require=tests_require,
setup_requires=setup_requires,
test_suite="nose.collector",
)