Files
turmlibar-calendar/pyproject.toml
2025-10-30 13:33:08 +01:00

23 lines
530 B
TOML

[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 = ["."]