29 lines
624 B
TOML
29 lines
624 B
TOML
[tool.poetry]
|
|
authors = [
|
|
"Jörn-Michael Miehe <jmm@yavook.de>",
|
|
"Penner42 <unbekannt42@web.de>",
|
|
]
|
|
description = ""
|
|
license = "MIT"
|
|
name = "advent22_api"
|
|
version = "0.1.0"
|
|
|
|
[tool.poetry.dependencies]
|
|
Pillow = "^10.0.1"
|
|
asyncify = "^0.9.2"
|
|
cachetools = "^5.3.2"
|
|
fastapi = "^0.103.1"
|
|
numpy = "^1.26.0"
|
|
pydantic-settings = "^2.0.3"
|
|
python = ">=3.11,<3.13"
|
|
tomli-w = "^1.0.0"
|
|
uvicorn = {extras = ["standard"], version = "^0.23.2"}
|
|
webdavclient3 = "^3.14.6"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
flake8 = "^6.1.0"
|
|
pytest = "^7.4.2"
|
|
|
|
[build-system]
|
|
build-backend = "poetry.core.masonry.api"
|
|
requires = ["poetry-core>=1.0.0"]
|