-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
45 lines (42 loc) · 1.09 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
42
43
44
45
[project]
name = "tdom-path"
version = "0.1.0"
description = "pathlib-compatible path API for web URLs with IDE integration"
requires-python = ">=3.14"
dependencies = [
"tdom>=0.1.13",
]
[dependency-groups]
dev = [
"aria-testing>=0.1.2",
"coverage>=7.11.2",
"furo>=2024.8.6",
"linkify-it-py>=2.0.3",
"myst-parser>=4.0.0",
"pytest>=8.4.2",
"pytest-benchmark>=4.0.0",
"pytest-cov>=4.1.0",
"pytest-freethreaded>=0.1.0",
"pytest-timeout>=2.4.0",
"pytest-xdist>=3.6.1",
"ruff>=0.13.2",
"sphinx>=8.0.0",
"sphinx-autobuild>=2024.9.3",
"sphinxcontrib-mermaid>=1.2.3",
"sybil[pytest]>=8.0.0",
"ty>=0.0.4",
]
[tool.pytest.ini_options]
testpaths = ["tests", "src", "docs"]
python_files = ["test_*.py"]
addopts = "-p no:doctest -p no:freethreaded -m \"not slow\""
pythonpath = ["examples"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
# Free-threading safety: timeout tests to detect hangs/deadlocks
timeout = 60
faulthandler_timeout = 120
[build-system]
requires = ["uv_build>=0.8.17,<0.9.0"]
build-backend = "uv_build"