We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d732121 commit 66f803cCopy full SHA for 66f803c
setup.py
100755
100644
@@ -4,10 +4,15 @@
4
import sys
5
from shutil import rmtree
6
7
-from setuptools import find_packages
8
from setuptools import Command
+from setuptools import find_packages
9
from setuptools import setup
10
11
+REQUIREMENTS = [
12
+ "boto3==1.4.4",
13
+ "click==6.6",
14
+ "PyYAML==5.1",
15
+]
16
PACKAGE_DATA = {
17
"aws_lambda": ["project_templates/*"],
18
"": ["*.json"],
@@ -60,6 +65,7 @@ def run(self):
60
65
packages=find_packages(),
61
66
url="https://github.com/nficano/python-lambda",
62
67
license="ISCL",
68
+ install_requires=REQUIREMENTS,
63
69
package_data=PACKAGE_DATA,
64
70
test_suite="tests",
71
tests_require=[],
0 commit comments