feat: add tests, update configs, fix state.py return, update gitignore

This commit is contained in:
2026-06-11 23:00:34 +02:00
parent 64d078f457
commit 0f390ff1e1
12 changed files with 305 additions and 15 deletions
+10 -2
View File
@@ -1,7 +1,7 @@
[project]
name = "ics-to-caldav"
version = "0.1.0"
description = "Add your description here"
version = "1.0.0"
description = "Incremental CalDAV sync from Outlook ICS to Baikal"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
@@ -9,3 +9,11 @@ dependencies = [
"icalendar>=6.3.2",
"requests>=2.32.5",
]
[project.optional-dependencies]
test = [
"pytest>=8.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]