File tree Expand file tree Collapse file tree 5 files changed +13
-7
lines changed
Expand file tree Collapse file tree 5 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 11include HISTORY.rst
22include LICENSE
33include README.rst
4+ include requirements.txt
45include python/boto/endpoints.json
56include aws_lambda/project_template/config.yaml
67recursive-include tests *.json *.py *.txt *.yaml
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ The *Python-Lambda* library takes away the guess work of developing your Python-
3434Requirements
3535============
3636
37- * Python 2.7 (At the time of writing this, AWS Lambda only supports Python 2.7).
3837* Pip (~8.1.1)
3938* Virtualenv (~15.0.0)
4039* Virtualenvwrapper (~4.7.1)
Original file line number Diff line number Diff line change 1+ """Version information."""
2+
3+ # The following line *must* be the last in the module, exactly as formatted:
4+ __version__ = "0.10.3"
Original file line number Diff line number Diff line change 11botocore == 1.10.42
22boto3 == 1.7.42
33click == 6.6
4- docutils == 0.12
4+ docutils == 0.14
55futures == 3.0.5
6- jmespath == 0.9.0
6+ jmespath == 0.9.4
77pyaml == 15.8.2
8- python-dateutil == 2.5.3
9- PyYAML == 3.11
10- six == 1.10 .0
8+ python-dateutil == 2.8.0
9+ PyYAML == 3.12
10+ six == 1.12 .0
Original file line number Diff line number Diff line change 1111 requirements = f .read ().splitlines ()
1212pip_requirements = [r .strip () for r in requirements ]
1313
14+ pkg_version = open ("aws_lambda/_version.py" ).readlines ()[- 1 ].split ()[- 1 ].strip ("\" '" )
15+
1416test_requirements = [
1517 # TODO: put package test requirements here
1618]
1719
1820setup (
1921 name = 'python-lambda-4dn' ,
20- version = '0.10.2' ,
22+ version = pkg_version ,
2123 description = "FORKED for 4dn-dcic. The bare minimum for a Python app running on Amazon Lambda." ,
2224 long_description = readme ,
2325 author = "Carl Vitzthum, Soo Lee" ,
You can’t perform that action at this time.
0 commit comments