forked from NoRedInk/make-lambda-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.in
41 lines (24 loc) · 770 Bytes
/
README.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# make_lambda_package
Bundle up Python deployment packages for AWS Lambda, including
source code, configs, and dependencies with extension modules.
# Installation
With [pipsi](https://github.com/mitsuhiko/pipsi#readme):
$ pipsi install make-lambda-package
Or pip:
$ pip install make-lambda-package
Packaging dependencies with the `--requirements-file` option requires
[the `docker` command](https://www.docker.com/) to be in your `$PATH`.
Dependencies will be built in a [lambci/lambda:build-python2.7](https://github.com/lambci/docker-lambda)
container.
# Usage
To use it:
$ make-lambda-package --help
{indented_help_text}
# Development
Install packages and run tests:
```sh
$ pipenv install
$ pipenv install -d
$ pipenv shell
$ pytest
```