-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Making requirements for setup.py read the main requirements.txt file.
- Loading branch information
1 parent
7caaca8
commit b05f1c7
Showing
1 changed file
with
6 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,13 @@ | |
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
|
||
with open("servicecatalog_puppet/requirements.txt", "r") as fh: | ||
requirements = fh.read().split("\n") | ||
|
||
setuptools.setup( | ||
name="aws-service-catalog-puppet", | ||
version="0.0.20", | ||
version="0.0.21", | ||
author="Eamonn Faherty", | ||
author_email="[email protected]", | ||
description="Making it easier to deploy ServiceCatalog products", | ||
|
@@ -28,12 +32,5 @@ | |
'console_scripts': [ | ||
'servicecatalog-puppet = servicecatalog_puppet.cli:cli' | ||
]}, | ||
install_requires=[ | ||
'pyyaml', | ||
'click', | ||
'Jinja2', | ||
'boto3', | ||
'pykwalify', | ||
'better-boto', | ||
], | ||
install_requires=requirements, | ||
) |