2026-07-12 09:39:55 +01:00
|
|
|
[project]
|
|
|
|
|
name = "violin"
|
2026-08-10 20:52:02 +01:00
|
|
|
version = "3.1.0"
|
2026-07-12 09:39:55 +01:00
|
|
|
description = "Supervised agentic Hermes penetration-testing profile"
|
2026-07-26 17:25:27 +01:00
|
|
|
requires-python = ">=3.11,<3.12"
|
2026-07-26 17:09:00 +01:00
|
|
|
dependencies = [
|
2026-07-26 17:11:05 +01:00
|
|
|
"bashlex>=0.18,<1",
|
2026-08-07 19:38:09 +01:00
|
|
|
"duckduckgo-search>=6.0.0",
|
2026-07-26 17:09:00 +01:00
|
|
|
"filelock>=3.13,<4",
|
|
|
|
|
"pydantic>=2.0,<3",
|
2026-07-26 17:09:55 +01:00
|
|
|
"psutil>=6.0.0,<7",
|
2026-07-26 17:10:27 +01:00
|
|
|
"netaddr>=1.3.0,<2",
|
|
|
|
|
"yarl>=1.9,<2",
|
2026-08-07 19:38:09 +01:00
|
|
|
"tirith>=0.2.2",
|
2026-08-10 20:52:02 +01:00
|
|
|
"pyyaml>=6.0,<7",
|
2026-07-26 17:09:00 +01:00
|
|
|
]
|
2026-07-12 09:39:55 +01:00
|
|
|
|
|
|
|
|
[dependency-groups]
|
|
|
|
|
dev = [
|
2026-07-18 22:42:57 +01:00
|
|
|
"pytest>=9.0.3,<10",
|
2026-07-12 09:39:55 +01:00
|
|
|
"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]
|
2026-07-12 20:57:55 +01:00
|
|
|
"tests/**/*.py" = ["S101", "E402"]
|
|
|
|
|
"scripts/**/*.py" = ["E402"]
|
2026-07-12 09:39:55 +01:00
|
|
|
|
|
|
|
|
[tool.ruff.format]
|
|
|
|
|
quote-style = "double"
|
|
|
|
|
indent-style = "space"
|
|
|
|
|
line-ending = "lf"
|
2026-08-07 19:38:09 +01:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
norecursedirs = ["engagements", ".hermes", ".agents"]
|