ovdashboard/api/pyproject.toml

30 lines
674 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/*"]
2022-08-31 18:26:07 +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"
async-cache = "^1.1.1"
caldav = "^1.3.6"
fastapi = "^0.103.2"
pydantic-settings = "^2.0.3"
python = "^3.11"
2022-09-18 22:42:28 +00:00
python-magic = "^0.4.27"
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
[tool.poetry.dev-dependencies]
# pytest = "^5.2"
2022-09-09 02:50:59 +00:00
[tool.poetry.scripts]
2022-09-18 22:50:45 +00:00
ovdashboard-api = "ovdashboard_api.__main__:main"
2022-09-09 02:50:59 +00:00
2022-08-28 23:31:17 +00:00
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]