21 lines
429 B
TOML
21 lines
429 B
TOML
[tool.poetry]
|
|
name = "backend"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Kai Vogelgesang <kai@leafbla.de>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
hypercorn = {extras = ["trio"], version = "^0.14.4"}
|
|
fastapi = "^0.103.2"
|
|
authlib = "^1.2.1"
|
|
itsdangerous = "^2.1.2"
|
|
pydantic-settings = "^2.0.3"
|
|
httpx = "^0.25.0"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|