Files

29 lines
585 B
TOML
Raw Permalink Normal View History

2026-06-15 11:40:00 +08:00
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 88
target-version = ["py310"]
2025-09-11 13:18:33 +08:00
[tool.ruff]
2026-06-15 11:40:00 +08:00
line-length = 88
target-version = "py310"
exclude = [
".git",
".pytest_cache",
".ruff_cache",
"build",
"dist",
"*.egg-info",
"wall_x/_vendor",
"wall_x/model/core/ops/csrc",
"wall_x/model/qact/qwen2_5/modeling_qwen2_5_vl.py",
"wall_x/model/qact/qwen2_5/modeling_qwen2_5_vl_act.py",
]
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
2025-09-11 13:18:33 +08:00
per-file-ignores = { "__init__.py" = ["F401", "E402"] }