advent22/api/pyproject.toml

34 lines
739 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]
Pillow = "^10.1.0"
2023-10-27 21:12:28 +00:00
asyncify = "^0.9.2"
cachetools = "^5.3.2"
cachetoolsutils = "^8.3"
2023-09-03 15:55:49 +00:00
fastapi = "^0.103.1"
markdown = "^3.5.1"
numpy = "^1.26.2"
pydantic-settings = "^2.1.0"
python = ">=3.11,<3.13"
2023-10-29 16:08:16 +00:00
redis = {extras = ["hiredis"], version = "^5.0.1"}
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]
black = "^23.11.0"
2023-09-03 15:55:49 +00:00
flake8 = "^6.1.0"
pytest = "^7.4.3"
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"]