A Command extension to setuptools that allows building an AWS Lamba dist and uploading to S3
Project description
Simply add setup_requires=['lambda_setuptools'] as an attribute to your setup.py file
This extension adds two new commands to setuptools:
ldist
Usage: ldist
Effect: This will build (using bdist_wheel) and install your package, along with all of the dependencies in install_requires
It is highly recommended that you DO NOT include boto3 or botocore in your install_requires dependencies as these are provided by the AWS Lambda environment. Include them at your own peril!
The result will be in dist/[your-package-name]-[version].zip (along with your wheel)
lupload
Usage: lupload --access-key=<my_access_key> --secret-access-key=<my_secret> --s3-bucket=<my_S3_bucket> --kms-key-id=<my_KMS_key> --s3-prefix=<my_S3_key_prefix>
Effect: This will build (using ldist) and upload the resulting ZIP file to the specified S3 bucket
kms-key-id is optional. If it is not provided, standard AES256 encryption will be used
s3-prefix is optional. If it is not provided, the ZIP file will be uploaded to the root of the S3 bucket
This extension also adds three new attributes to the setup() function:
lambda_function
Usage: lambda_function=<my_package>.<some_module>:<some_function>
Effect: ldist will create a root-level python module named *_function.py* where package_name is derived from the name attribute. This created module will simply redefine your lambda handler function at the root-level
lambda_module
Usage: lambda_module=<some_module>
Effect: ldist adds the named module to the list of py_modules to install, normally at the root level
lambda_package
Usage: lambda_package=<some_dir>
Effect: ldist will copy the contents of the provided directory into the root level of the resulting lambda distribution. The provided directory MUST NOT have an *__init__.py* in it (e.g. - it can’t be a real package)
All ldist attributes can be used in the same setup() call. It is up to the user to ensure that you don’t step all over yourself…
Note that all other commands and attributes in setup.py will still work the way you expect them to.
Enjoy!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for lambda_setuptools-0.1.8-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 14a1a0bf06e28c4089ec4adbb53b7e2a28500bce48e2c7f04d8e9d1c7f9a1c02 |
|
MD5 | 9d88ee269d2ecb01c95928f47ce9e349 |
|
BLAKE2b-256 | 819c4b80783b192b67a05e2c1383989cdf990b34334794bd455977a5444ba9f2 |