Skip to content

Commit

Permalink
fix: Adding wheel dependency for python_pip packager (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanathkr authored Nov 22, 2018
1 parent aa0acbc commit 180063a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 1 addition & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
include LICENSE
include requirements/base.txt
include requirements/dev.txt
include requirements/*
recursive-include aws_lambda_builders/workflows *
prune tests

5 changes: 5 additions & 0 deletions requirements/python_pip.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

# Following packages are required by `python_pip` workflow to run.
# TODO: Consider moving this dependency directly into the `python_pip` workflow module
setuptools
wheel
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def read_version():
'{}=aws_lambda_builders.__main__:main'.format(cmd_name)
]
},
install_requires=read_requirements('base.txt'),
install_requires=read_requirements('base.txt') + read_requirements("python_pip.txt"),
extras_require={
'dev': read_requirements('dev.txt')
},
Expand Down

0 comments on commit 180063a

Please sign in to comment.