forked from cloudtools/stacker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- > 80 character lines - mixed use of ' and " (only use " now) - some minor grammar errors
- Loading branch information
1 parent
1b683f8
commit 5456567
Showing
38 changed files
with
517 additions
and
504 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,22 +2,22 @@ | |
from setuptools import setup, find_packages | ||
import glob | ||
|
||
VERSION = '0.6.3' | ||
VERSION = "0.6.3" | ||
|
||
src_dir = os.path.dirname(__file__) | ||
|
||
install_requires = [ | ||
'troposphere>=1.2.2', | ||
'boto>=2.25.0', | ||
'botocore>=1.3.15', | ||
'PyYAML>=3.11', | ||
'awacs>=0.5.3', | ||
"troposphere>=1.2.2", | ||
"boto>=2.25.0", | ||
"botocore>=1.3.15", | ||
"PyYAML>=3.11", | ||
"awacs>=0.5.3", | ||
] | ||
|
||
tests_require = [ | ||
'nose>=1.0', | ||
'mock==1.0.1', | ||
'stacker_blueprints', | ||
"nose>=1.0", | ||
"mock==1.0.1", | ||
"stacker_blueprints", | ||
] | ||
|
||
|
||
|
@@ -27,19 +27,19 @@ def read(filename): | |
return fd.read() | ||
|
||
|
||
if __name__ == '__main__': | ||
if __name__ == "__main__": | ||
setup( | ||
name='stacker', | ||
name="stacker", | ||
version=VERSION, | ||
author='Michael Barrett', | ||
author_email='[email protected]', | ||
author="Michael Barrett", | ||
author_email="[email protected]", | ||
license="New BSD license", | ||
url="https://github.com/remind101/stacker", | ||
description='Opinionated AWS CloudFormation Stack manager', | ||
long_description=read('README.rst'), | ||
description="Opinionated AWS CloudFormation Stack manager", | ||
long_description=read("README.rst"), | ||
packages=find_packages(), | ||
scripts=glob.glob(os.path.join(src_dir, 'scripts', '*')), | ||
scripts=glob.glob(os.path.join(src_dir, "scripts", "*")), | ||
install_requires=install_requires, | ||
tests_require=tests_require, | ||
test_suite='nose.collector', | ||
test_suite="nose.collector", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '0.6.3' | ||
__version__ = "0.6.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.