Files
mdcaldav/pyproject.toml
Tyler Perkins 8b5cd370ea
Some checks failed
CI / test (push) Failing after 11s
CI / image (push) Has been skipped
Initial commit
2026-08-01 21:03:35 -04:00

33 lines
644 B
TOML

[project]
name = "markdown-to-caldav"
version = "0.1.0"
description = "Expose TODO checkboxes in a markdown vault (zk / Obsidian) as a CalDAV task server"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "GPL-3.0-or-later" }
dependencies = [
"radicale>=3.7",
"watchdog>=4.0",
"rapidfuzz>=3.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"caldav>=1.3",
]
[project.scripts]
mdcaldav = "mdcaldav.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mdcaldav"]
[tool.pytest.ini_options]
testpaths = ["tests"]