Skip to content

Commit b1ebce5

Browse files
author
Joe Snell
committed
update entrypoint
1 parent c1c6dd3 commit b1ebce5

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
711
To get started you can use the default `Extension` class, or extend it.
812

913
Example:
1014

1115
```python
12-
from lambda_extension_framework import Extension
16+
from lef import Extension
1317

1418
def handler(event):
1519
print(event)

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.poetry]
2-
name = "lambda-extension-framework"
2+
name = "lef"
33
version = "0.1.0"
44
description = "Framework for creating AWS Lambda Extensions"
55
authors = ["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]
2024
python = "^3.8"
2125
requests = "^2.24.0"

0 commit comments

Comments
 (0)