Metadata-Version: 2.4
Name: aws_lambda_builders
Version: 1.56.0
Summary: Python library to compile, build & package AWS Lambda functions for several runtimes & frameworks.
Home-page: https://github.com/awslabs/aws-lambda-builders
Author: Amazon Web Services
Author-email: aws-sam-developers@amazon.com
License: Apache License 2.0
Keywords: AWS Lambda Functions Building
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Utilities
Requires-Python: >=3.8
License-File: LICENSE
License-File: NOTICE
Requires-Dist: setuptools
Requires-Dist: wheel
Provides-Extra: dev
Requires-Dist: coverage==7.9.2; python_version >= "3.9" and extra == "dev"
Requires-Dist: coverage==7.6.1; python_version < "3.9" and extra == "dev"
Requires-Dist: flake8==3.8.4; extra == "dev"
Requires-Dist: pytest-cov==6.1.1; python_version >= "3.9" and extra == "dev"
Requires-Dist: pytest-cov==5.0.0; python_version < "3.9" and extra == "dev"
Requires-Dist: pytest>=6.1.1; extra == "dev"
Requires-Dist: parameterized==0.9.0; extra == "dev"
Requires-Dist: pyelftools~=0.32; extra == "dev"
Requires-Dist: black==25.1.0; python_version >= "3.9" and extra == "dev"
Requires-Dist: black==24.8.0; python_version < "3.9" and extra == "dev"
Requires-Dist: ruff==0.11.13; extra == "dev"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

## Lambda Builders

![Apache 2.0 License](https://img.shields.io/github/license/aws/aws-lambda-builders)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/aws/aws-lambda-builders)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/aws-lambda-builders)
![pip](https://img.shields.io/badge/pip-aws--lambda--builders-9cf)

Lambda Builders is a Python library to compile, build and package AWS Lambda functions for several runtimes & 
frameworks.

Lambda Builders currently contains the following workflows

* Java with Gradle
* Java with Maven
* Dotnet with amazon.lambda.tools
* Python with Pip
* Javascript with Npm
* Typescript with esbuild
* Ruby with Bundler
* Go with Mod
* Rust with Cargo

In Addition to above workflows, AWS Lambda Builders also supports *Custom Workflows* through a Makefile.

Lambda Builders is the brains behind the `sam build` command from [AWS SAM CLI](https://github.com/awslabs/aws-sam-cli)

### Integrating with Lambda Builders

Lambda Builders is a Python library.
It additionally exposes a JSON-RPC 2.0 interface to use from other languages.

If you intend to integrate with Lambda Builders,
check out [this section of the DESIGN DOCUMENT](DESIGN.md#builders-library).

### Contributing

If you are a developer and interested in contributing, read the [DESIGN DOCUMENT](./DESIGN.md) to understand how this works.
