forked from Sceptre/sceptre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·98 lines (91 loc) · 2.73 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from sceptre import __version__
from setuptools import setup, find_packages
from os import path
with open("README.md") as readme_file:
readme = readme_file.read()
with open("CHANGELOG.md") as history_file:
history = history_file.read()
install_requirements = [
"boto3>=1.3,<2.0",
"click==7.0",
"PyYaml>=5.1,<6.0",
"Jinja2>=2.8,<3",
"colorama==0.3.9",
"packaging==16.8",
"six>=1.11.0,<2.0.0",
"networkx==2.1",
"typing>=3.7.0,<3.8.0"
]
test_requirements = [
"pytest>=3.2",
"troposphere>=2.0.0",
"moto==1.3.8",
"mock==2.0.0",
"behave==1.2.5",
"freezegun==0.3.12"
]
setup_requirements = [
"pytest-runner>=3"
]
setup(
name="sceptre",
version=__version__,
description="Cloud Provisioning Tool",
long_description=readme,
long_description_content_type="text/markdown",
author="Cloudreach",
author_email="[email protected]",
license='Apache2',
url="https://github.com/cloudreach/sceptre",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_dir={
"sceptre": "sceptre"
},
py_modules=["sceptre"],
entry_points={
"console_scripts": [
'sceptre = sceptre.cli:cli'
],
"sceptre.hooks": [
"asg_scheduled_actions ="
"sceptre.hooks.asg_scaling_processes:ASGScalingProcesses",
"cmd = sceptre.hooks.cmd:Cmd"
],
"sceptre.resolvers": [
"environment_variable ="
"sceptre.resolvers.environment_variable:EnvironmentVariable",
"file_contents = sceptre.resolvers.file_contents:FileContents",
"stack_output = sceptre.resolvers.stack_output:StackOutput",
"stack_output_external ="
"sceptre.resolvers.stack_output:StackOutputExternal"
]
},
data_files=[
(path.join("sceptre", "stack_policies"), [
path.join("sceptre", "stack_policies", "lock.json"),
path.join("sceptre", "stack_policies", "unlock.json")
])
],
include_package_data=True,
zip_safe=False,
keywords="sceptre",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Environment :: Console",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
test_suite="tests",
install_requires=install_requirements,
tests_require=test_requirements,
setup_requires=setup_requirements,
extras_require={
"test": test_requirements
}
)