We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 19fe07fCopy full SHA for 19fe07f
README.md
@@ -0,0 +1,3 @@
1
+# Python Extension Framework
2
+
3
+This is a framework for building [AWS Lambda Extensions](https://aws.amazon.com/blogs/compute/introducing-aws-lambda-extensions-in-preview/).
pyproject.toml
@@ -0,0 +1,17 @@
+[tool.poetry]
+name = "python-extension-framework"
+version = "0.1.0"
4
+description = ""
5
+authors = ["Joe Snell <joepsnell@gmail.com>"]
6
+license = "MIT"
7
8
+[tool.poetry.dependencies]
9
+python = "^3.8"
10
+requests = "^2.24.0"
11
12
+[tool.poetry.dev-dependencies]
13
+pytest = "^6.1.1"
14
15
+[build-system]
16
+requires = ["poetry>=0.12"]
17
+build-backend = "poetry.masonry.api"
0 commit comments