Skip to content

Commit 66f803c

Browse files
Adding back the required packages to setup.py for successful installation (#488)
1 parent d732121 commit 66f803c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

setup.py

100755100644
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@
44
import sys
55
from shutil import rmtree
66

7-
from setuptools import find_packages
87
from setuptools import Command
8+
from setuptools import find_packages
99
from setuptools import setup
1010

11+
REQUIREMENTS = [
12+
"boto3==1.4.4",
13+
"click==6.6",
14+
"PyYAML==5.1",
15+
]
1116
PACKAGE_DATA = {
1217
"aws_lambda": ["project_templates/*"],
1318
"": ["*.json"],
@@ -60,6 +65,7 @@ def run(self):
6065
packages=find_packages(),
6166
url="https://github.com/nficano/python-lambda",
6267
license="ISCL",
68+
install_requires=REQUIREMENTS,
6369
package_data=PACKAGE_DATA,
6470
test_suite="tests",
6571
tests_require=[],

0 commit comments

Comments
 (0)