-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (72 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
77 lines (72 loc) · 1.75 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
dependencies = ["pyochain>=0.5.52", "pytest>=9.0.2"]
description = "Pytest plugin for discovering and running doctests from Python stub files (.pyi)."
name = "pytest-stubtester"
readme = "README.md"
requires-python = ">=3.12"
version = "0.5.0"
[project.entry-points.pytest11]
stubtester = "pytest_stubtester.plugin"
[tool.uv]
package = true
[tool.uv.sources]
pytest_stubtester = { workspace = true }
[build-system]
build-backend = "uv_build"
requires = ["uv_build>=0.9.18"]
[tool.ruff]
lint.ignore = [
"A001",
"A004",
"C417",
"COM812",
"COM812",
"CPY001",
"D401",
"E501",
"FIX002",
"PD003",
"PLC0415",
"PLC1901",
"PLC2801",
"PLR0904",
"PLR2004",
"S101",
"S102",
"S404",
"S608",
"SLF001",
"T201",
"T203",
"TC003",
"TC006",
"TD002",
"TD003",
"TID252",
]
lint.select = ["ALL"]
preview = true
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"src/pql/sql/_code_gen/*.py" = [
"A002",
"ANN401",
"FBT001",
"FBT002",
"PLR0913",
"PLW1641",
]
"t.py" = ["ANN201", "D100", "D101", "D103"]
"tests/*" = ["D100", "D101", "D102", "D103", "D104", "DTZ001", "FBT001"]
[tool.ruff.lint.isort]
combine-as-imports = true
[dependency-groups]
dev = [
"basedpyright>=1.39.0",
"pytest>=9.0.2",
"rich>=14.2.0",
"ruff>=0.14.9",
]