Initial commit
This commit is contained in:
32
pyproject.toml
Normal file
32
pyproject.toml
Normal file
@@ -0,0 +1,32 @@
|
||||
[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"]
|
||||
Reference in New Issue
Block a user