Files
violin/pyproject.toml
Violin 3807d22eaa fix(benchmark): evidence-gated scorer contract, false-positive discriminators, runner validity
- Confirm Validated hypotheses via canonical FIND-NNN.md matched in live-app
  terms (METHOD + endpoint route) alongside execution bundles
- require/require_any discriminators for shared-endpoint challenges;
  absence-type scoring for no-rate-limiting
- Runner: closeout timeout is a soft warning, not run invalidation
- ai_judge: whitelist legitimate closeout artifacts in schema-drift audit
- Align version surfaces to 3.1.0; move pyyaml to runtime deps

Calibration: known-good 20/20, known-bad 0/0. Latest run re-scored 4 -> 9.
2026-08-10 20:52:02 +01:00

45 lines
945 B
TOML

[project]
name = "violin"
version = "3.1.0"
description = "Supervised agentic Hermes penetration-testing profile"
requires-python = ">=3.11,<3.12"
dependencies = [
"bashlex>=0.18,<1",
"duckduckgo-search>=6.0.0",
"filelock>=3.13,<4",
"pydantic>=2.0,<3",
"psutil>=6.0.0,<7",
"netaddr>=1.3.0,<2",
"yarl>=1.9,<2",
"tirith>=0.2.2",
"pyyaml>=6.0,<7",
]
[dependency-groups]
dev = [
"pytest>=9.0.3,<10",
"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"
[tool.pytest.ini_options]
testpaths = ["tests"]
norecursedirs = ["engagements", ".hermes", ".agents"]