You've already forked request-coalescing-py
mirror of
https://github.com/hexolan/request-coalescing-py.git
synced 2026-03-26 10:11:16 +00:00
initial commit
This commit is contained in:
26
pyproject.toml
Normal file
26
pyproject.toml
Normal 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"
|
||||
Reference in New Issue
Block a user