advent22/api/pyproject.toml

34 lines
736 B
TOML
Raw 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]
2024-03-21 22:30:28 +00:00
Pillow = "^10.2.0"
2023-10-27 21:12:28 +00:00
asyncify = "^0.9.2"
2024-03-21 22:30:28 +00:00
cachetools = "^5.3.3"
cachetoolsutils = "^8.5"
2023-09-03 15:55:49 +00:00
fastapi = "^0.103.1"
2024-03-21 22:30:28 +00:00
markdown = "^3.6"
numpy = "^1.26.4"
pydantic-settings = "^2.2.1"
python = ">=3.11,<3.13"
2024-03-21 22:30:28 +00:00
redis = {extras = ["hiredis"], version = "^5.0.3"}
2023-09-07 16:44:44 +00:00
tomli-w = "^1.0.0"
2023-09-03 15:55:49 +00:00
uvicorn = {extras = ["standard"], version = "^0.23.2"}
webdavclient3 = "^3.14.6"
2022-10-07 23:50:20 +00:00
2022-11-29 22:51:37 +00:00
[tool.poetry.group.dev.dependencies]
2024-03-21 22:30:28 +00:00
black = "^24.3.0"
flake8 = "^7.0.0"
pytest = "^8.1.1"
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"]