forked from cloudtools/stacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (34 loc) · 989 Bytes
/
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
import os
from setuptools import setup, find_packages
import glob
src_dir = os.path.dirname(__file__)
install_requires = [
'aws_helper>=0.2.0',
'troposphere>=1.0.0',
'boto>=2.25.0',
'PyYAML>=3.11',
]
tests_require = [
'nose>=1.0',
'mock==1.0.1',
]
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='0.4.0',
author='Michael Barrett',
author_email='loki77@gmail.com',
license="New BSD license",
url="https://github.com/remind101/stacker",
description='Opinionated AWS CloudFormation Stack manager',
long_description=read('README.rst'),
packages=find_packages(),
scripts=glob.glob(os.path.join(src_dir, 'scripts', '*')),
install_requires=install_requires,
tests_require=tests_require,
test_suite='nose.collector',
)