File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
include LICENSE
2
- include requirements/base.txt
3
- include requirements/dev.txt
2
+ include requirements/*
4
3
recursive-include aws_lambda_builders/workflows *
5
4
prune tests
6
5
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def read_version():
55
55
'{}=aws_lambda_builders.__main__:main' .format (cmd_name )
56
56
]
57
57
},
58
- install_requires = read_requirements ('base.txt' ),
58
+ install_requires = read_requirements ('base.txt' ) + read_requirements ( "python_pip.txt" ) ,
59
59
extras_require = {
60
60
'dev' : read_requirements ('dev.txt' )
61
61
},
You can’t perform that action at this time.
0 commit comments