Files
violin/pyproject.toml
T
2026-07-22 11:18:53 +01:00

32 lines
659 B
TOML

[project]
name = "violin"
version = "3.0.0"
description = "Supervised agentic Hermes penetration-testing profile"
requires-python = ">=3.11"
dependencies = ["filelock>=3.13,<4"]
[dependency-groups]
dev = [
"pytest>=9.0.3,<10",
"pyyaml>=6.0,<7",
"ruff>=0.11,<0.12",
]
[tool.ruff]
target-version = "py311"
line-length = 100
extend-exclude = ["engagements", ".hermes", ".agents"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["S101", "E402"]
"scripts/**/*.py" = ["E402"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "lf"