ovdashboard/api/pyproject.toml

37 lines
862 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"
2022-08-28 23:31:17 +00:00
version = "0.1.0"
[tool.poetry.dependencies]
2023-10-16 18:06:22 +00:00
Markdown = "^3.5"
Pillow = "^10.1.0"
2023-10-26 20:42:26 +00:00
asyncify = "^0.9.2"
cachetools = "^5.3.2"
2023-11-09 11:13:48 +00:00
cachetoolsutils = "^8.2"
2023-10-16 18:06:22 +00:00
caldav = "^1.3.6"
fastapi = "^0.103.2"
pydantic-settings = "^2.0.3"
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]
2023-10-26 20:42:26 +00:00
black = "^23.10.1"
2023-10-17 12:47:23 +00:00
flake8 = "^6.1.0"
flake8-isort = "^6.1.0"
2023-10-26 20:42:26 +00:00
types-cachetools = "^5.3.0.6"
pytest = "^7.4.3"
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"]