ovdashboard/api/pyproject.toml

37 lines
864 B
TOML
Raw Normal View History

2022-08-28 23:31:17 +00:00
[tool.poetry]
authors = ["Jörn-Michael Miehe <jmm@yavook.de>"]
description = ""
2022-09-19 10:13:06 +00:00
include = ["ovdashboard_api/skel/*"]
2023-10-17 12:47:23 +00:00
name = "ovdashboard_api"
2024-04-24 13:57:01 +00:00
version = "0.2.1"
2022-08-28 23:31:17 +00:00
[tool.poetry.dependencies]
Markdown = "^3.5.1"
2023-10-16 18:06:22 +00:00
Pillow = "^10.1.0"
2023-10-26 20:42:26 +00:00
asyncify = "^0.9.2"
cachetools = "^5.3.2"
cachetoolsutils = "^8.3"
2023-10-16 18:06:22 +00:00
caldav = "^1.3.6"
fastapi = "^0.103.2"
pydantic-settings = "^2.1.0"
2023-10-17 12:47:23 +00:00
python = "^3.12"
2022-09-18 22:42:28 +00:00
python-magic = "^0.4.27"
2023-11-09 11:13:48 +00:00
redis = {extras = ["hiredis"], version = "^5.0.1"}
tomli-w = "^1.0.0"
2023-10-16 18:06:22 +00:00
uvicorn = {extras = ["standard"], version = "^0.23.2"}
webdavclient3 = "^3.14.6"
2022-08-28 23:31:17 +00:00
2023-10-17 12:47:23 +00:00
[tool.poetry.group.dev.dependencies]
black = "^23.11.0"
2023-10-17 12:47:23 +00:00
flake8 = "^6.1.0"
flake8-isort = "^6.1.1"
pytest = "^7.4.3"
2024-04-24 13:57:01 +00:00
types-cachetools = "^5.3.0.7"
2022-09-09 02:50:59 +00:00
[tool.poetry.scripts]
ovdashboard-api = "ovdashboard_api.main:main"
2022-08-28 23:31:17 +00:00
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]