-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (33 loc) · 870 Bytes
/
pyproject.toml
File metadata and controls
42 lines (33 loc) · 870 Bytes
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
[project]
name = "halide-build-bot"
version = "0.1.0"
requires-python = ">=3.12"
[dependency-groups]
dev = [
"ruff~=0.15.0",
"ty~=0.0.16",
"pre-commit~=4.2",
]
[tool.ruff]
line-length = 120
extend-include = ["*.tac", "*.cfg"]
[tool.ruff.lint]
ignore = [
"F402", ## Import shadowed by loop variable (os)
]
[tool.ty.environment]
extra-paths = ["master"]
[tool.ty.src]
include = ["master/custom_steps.py"]
[tool.bandit]
targets = ["master/master.cfg", "master/custom_steps.py", "master/buildbot.tac", "worker/buildbot.tac"]
skips = [
"B101", # assert_used: asserts are intentional for config validation
]
[tool.vulture]
paths = ["master/master.cfg", "master/custom_steps.py", "master/buildbot.tac", "worker/buildbot.tac"]
min_confidence = 80
[tool.codespell]
skip = ".venv,*.pyc,__pycache__"
[tool.uv.workspace]
members = ["master", "worker"]