Skip to content

Commit 180063a

Browse files
authored
fix: Adding wheel dependency for python_pip packager (#34)
1 parent aa0acbc commit 180063a

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

MANIFEST.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
include LICENSE
2-
include requirements/base.txt
3-
include requirements/dev.txt
2+
include requirements/*
43
recursive-include aws_lambda_builders/workflows *
54
prune tests
65

requirements/python_pip.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
# Following packages are required by `python_pip` workflow to run.
3+
# TODO: Consider moving this dependency directly into the `python_pip` workflow module
4+
setuptools
5+
wheel

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def read_version():
5555
'{}=aws_lambda_builders.__main__:main'.format(cmd_name)
5656
]
5757
},
58-
install_requires=read_requirements('base.txt'),
58+
install_requires=read_requirements('base.txt') + read_requirements("python_pip.txt"),
5959
extras_require={
6060
'dev': read_requirements('dev.txt')
6161
},

0 commit comments

Comments
 (0)