initial commit

This commit is contained in:
2023-10-03 22:13:42 +01:00
commit 79ba18e15f
17 changed files with 1110 additions and 0 deletions

26
pyproject.toml Normal file
View File

@@ -0,0 +1,26 @@
[tool.poetry]
name = "request-coalescing-py"
version = "0.1.0"
description = "A simple demonstration of request coalescing in asynchronous Python."
authors = ["Declan <declan@hexolan.dev>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
fastapi = "^0.103.2"
pydantic = "^2.4.2"
databases = {extras = ["sqlite"], version = "^0.8.0"}
uvicorn = "^0.23.2"
[tool.poetry.group.dev.dependencies]
httpx = "^0.25.0"
pytest = "^7.4.2"
asgi-lifespan = "^2.1.0"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "--capture=tee-sys -p no:cacheprovider"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"