-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (53 loc) · 1 KB
/
pyproject.toml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "stompman-workspace"
requires-python = ">=3.11"
version = "0"
[dependency-groups]
dev = [
"anyio==4.8.0",
"faker==35.0.0",
"hypothesis==6.124.7",
"mypy==1.14.1",
"polyfactory==2.19.0",
"pytest==8.3.4",
"pytest-cov==6.0.0",
"ruff==0.9.3",
"uvloop==0.21.0",
]
[tool.uv]
package = false
[tool.uv.workspace]
members = ["packages/*"]
[tool.uv.sources]
stompman = { workspace = true }
[tool.mypy]
python_version = "3.11"
warn_unused_ignores = true
strict = true
[tool.ruff]
fix = true
unsafe-fixes = true
line-length = 120
[tool.ruff.lint]
preview = true
select = ["ALL"]
ignore = [
"ASYNC109",
"COM812",
"CPY001",
"D1",
"D203",
"D213",
"DOC201",
"DOC501",
"ISC001",
"PLC2801",
"PLR0913",
]
extend-per-file-ignores = { "*/test_*/*" = ["S101", "SLF001", "ARG", "PLR6301"] }
[tool.pytest.ini_options]
addopts = "--cov -s -vv"
[tool.coverage.report]
skip_covered = true
show_missing = true
exclude_also = ["if TYPE_CHECKING:"]