Skip to content

Commit 19fe07f

Browse files
author
Joe Snell
committed
initial
0 parents  commit 19fe07f

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[tool.poetry]
2+
name = "python-extension-framework"
3+
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

Comments
 (0)