File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,16 @@ This is a framework for building [AWS Lambda Extensions](https://aws.amazon.com/
44
55## Quickstart
66
7+ ``` bash
8+ $ pip install lef
9+ ```
10+
711To get started you can use the default ` Extension ` class, or extend it.
812
913Example:
1014
1115``` python
12- from lambda_extension_framework import Extension
16+ from lef import Extension
1317
1418def handler (event ):
1519 print (event)
Original file line number Diff line number Diff line change 11[tool .poetry ]
2- name = " lambda-extension-framework "
2+ name = " lef "
33version = " 0.1.0"
44description = " Framework for creating AWS Lambda Extensions"
55authors = [" Joe Snell <joepsnell@gmail.com>" ]
@@ -16,6 +16,10 @@ keywords = [
1616 " Extension Framework"
1717]
1818
19+ packages = [
20+ { include = " lambda_extension_framework" }
21+ ]
22+
1923[tool .poetry .dependencies ]
2024python = " ^3.8"
2125requests = " ^2.24.0"
You can’t perform that action at this time.
0 commit comments