advent22/api/pyproject.toml

34 lines
741 B
TOML
Raw Permalink Normal View History

2022-10-07 23:50:20 +00:00
[tool.poetry]
authors = [
2022-10-08 00:18:16 +00:00
"Jörn-Michael Miehe <jmm@yavook.de>",
"Penner42 <unbekannt42@web.de>",
2022-10-07 23:50:20 +00:00
]
2022-10-08 00:18:16 +00:00
description = ""
2022-10-07 23:50:20 +00:00
license = "MIT"
2022-10-08 00:18:16 +00:00
name = "advent22_api"
version = "0.1.0"
2022-10-07 23:50:20 +00:00
[tool.poetry.dependencies]
Pillow = "^12.1.1"
asyncify = "^0.12.1"
cachetools = "^7.0.1"
cachetoolsutils = "^11.0"
fastapi = "^0.129.0"
markdown = "^3.10.2"
numpy = "^2.4.2"
pydantic-settings = "^2.13.0"
python = ">=3.11,<3.15"
redis = {extras = ["hiredis"], version = "^7.1.1"}
tomli-w = "^1.2.0"
uvicorn = {extras = ["standard"], version = "^0.40.0"}
webdavclient3 = "^3.14.7"
2022-10-07 23:50:20 +00:00
2022-11-29 22:51:37 +00:00
[tool.poetry.group.dev.dependencies]
black = "^26.1.0"
flake8 = "^7.3.0"
pytest = "^9.0.2"
2022-11-29 22:51:37 +00:00
2022-10-07 23:50:20 +00:00
[build-system]
build-backend = "poetry.core.masonry.api"
2022-10-08 00:18:16 +00:00
requires = ["poetry-core>=1.0.0"]