File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change 8
8
from setuptools import Command
9
9
from setuptools import setup
10
10
11
+ REQUIREMENTS = [
12
+ "boto3" ,
13
+ "click" ,
14
+ "PyYAML" ,
15
+ ]
16
+ PACKAGE_DATA = {
17
+ "aws_lambda" : ["project_templates/*" ],
18
+ "" : ["*.json" ],
19
+ }
11
20
THIS_DIR = os .path .abspath (os .path .dirname (__file__ ))
12
21
README = os .path .join (THIS_DIR , "README.md" )
13
22
@@ -47,10 +56,6 @@ def run(self):
47
56
os .system ("twine upload dist/*" )
48
57
sys .exit ()
49
58
50
- package_data = {
51
- "aws_lambda" : ["project_templates/*" ],
52
- "" : ["*.json" ],
53
- }
54
59
55
60
setup (
56
61
name = "python-lambda" ,
@@ -60,7 +65,10 @@ def run(self):
60
65
packages = find_packages (),
61
66
url = "https://github.com/nficano/python-lambda" ,
62
67
license = "ISCL" ,
63
- package_data = package_data ,
68
+ package_data = PACKAGE_DATA ,
69
+ test_suite = "tests" ,
70
+ tests_require = [],
71
+ install_requires = REQUIREMENTS ,
64
72
classifiers = [
65
73
"Development Status :: 2 - Pre-Alpha" ,
66
74
"Intended Audience :: Developers" ,
You can’t perform that action at this time.
0 commit comments