-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
47 lines (40 loc) · 1.04 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
import os
from setuptools import setup, find_packages
base_dir = os.path.dirname(__file__)
about = {}
with open(os.path.join(base_dir, 'stacks', '__about__.py')) as f:
exec(f.read(), about)
install_requires = [
'configargparse>=0.9.3',
'PyYAML>=4.2b1',
'Jinja2>=2.7.3',
'boto>=2.40.0',
'docker==6.1.3',
'openapi-spec-validator==0.5.7',
'tabulate>=0.7.5',
'setuptools',
'pytz',
'tzlocal',
]
tests_require = [
'moto',
]
config = {
'name': 'cfstacks',
'description': 'Manage CloudFormation sanely with templates written in YAML',
'url': about['__url__'],
'download_url': about['__url__'],
'version': about['__version__'],
'maintainer': about['__maintainer__'],
'maintainer_email': about['__maintainer_email__'],
'packages': find_packages(),
'install_requires': install_requires,
'tests_require': tests_require,
'entry_points': {
'console_scripts': [
'stacks = stacks.__main__:main',
],
},
'python_requires': '>=3',
}
setup(**config)