Skip to content

Commit

Permalink
Making requirements for setup.py read the main requirements.txt file.
Browse files Browse the repository at this point in the history
  • Loading branch information
eamonnfaherty committed Apr 27, 2019
1 parent 7caaca8 commit b05f1c7
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="aws-service-catalog-tools@amazon.com",
description="Making it easier to deploy ServiceCatalog products",
Expand All @@ -28,12 +32,5 @@
'console_scripts': [
'servicecatalog-puppet = servicecatalog_puppet.cli:cli'
]},
install_requires=[
'pyyaml',
'click',
'Jinja2',
'boto3',
'pykwalify',
'better-boto',
],
install_requires=requirements,
)

0 comments on commit b05f1c7

Please sign in to comment.