20 lines
366 B
TOML
20 lines
366 B
TOML
[project]
|
|
name = "ics-to-caldav"
|
|
version = "1.0.0"
|
|
description = "Incremental CalDAV sync from Outlook ICS to Baikal"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"caldav>=2.2.3",
|
|
"icalendar>=6.3.2",
|
|
"requests>=2.32.5",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest>=8.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|