-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
41 lines (34 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "groupware-sync"
version = "0.1.0"
description = "Two-way contacts sync between Stalwart (JMAP), Microsoft 365 (Graph), and CardDAV servers"
requires-python = ">=3.11"
license = "GPL-3.0-or-later"
dependencies = [
"httpx>=0.27",
"sqlalchemy>=2.0",
"keyring>=24",
"typer>=0.12",
"vobject>=0.9.7",
]
[project.scripts]
groupware-sync-auth = "groupware_sync_auth.cli:app"
groupware-sync-contacts = "groupware_sync_contacts.cli:app"
groupware-sync-calendar = "groupware_sync_calendar.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["src/groupware_sync_auth", "src/groupware_sync_contacts", "src/groupware_sync", "src/groupware_sync_calendar"]
[project.optional-dependencies]
dev = ["pytest>=8.0", "ruff>=0.8", "pip-audit>=2.7"]
[tool.pytest.ini_options]
markers = [
"e2e: end-to-end tests requiring Docker services (deselect with '-m \"not e2e\"')",
]
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"]