Commit All

This commit is contained in:
2025-10-30 13:33:08 +01:00
commit 3678efed07
31 changed files with 5536 additions and 0 deletions

23
pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[project]
name = "turmli-bar-calendar-tool"
version = "0.1.0"
description = "A web server that fetches and displays ICS calendar events"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"httpx>=0.25.0",
"icalendar>=5.0.0",
"jinja2>=3.1.0",
"python-multipart>=0.0.6",
"apscheduler>=3.10.0",
"pytz>=2023.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]