forked from cloudtools/stacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
75 lines (64 loc) · 1.86 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import os
from setuptools import setup, find_packages
VERSION = "1.6.0"
src_dir = os.path.dirname(__file__)
install_requires = [
"future",
"troposphere>=1.9.0",
# pinning needed till https://github.com/spulec/moto/issues/1924 is
# resolved
"botocore<1.11.0",
"boto3>=1.7.0,<1.8.0",
"PyYAML>=3.13b1",
"awacs>=0.6.0",
"gitpython>=2.0,<3.0",
"schematics>=2.0.1,<2.1.0",
"formic2",
"python-dateutil>=2.0,<3.0",
]
tests_require = [
# pinning needed till https://github.com/spulec/moto/issues/1924 is
# resolved
"aws-xray-sdk==1.1.2",
"mock~=2.0.0",
"moto~=1.1.24",
"testfixtures~=4.10.0",
"coverage~=4.3.4",
"flake8-future-import",
]
setup_requires = ["nose"]
scripts = [
"scripts/compare_env",
"scripts/docker-stacker",
"scripts/stacker.cmd",
"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="[email protected]",
license="New BSD license",
url="https://github.com/cloudtools/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",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
)