Files
Simone Margaritelli 80d746e4f7 things
2026-05-18 22:43:41 +02:00

37 lines
757 B
TOML

[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "audit"
version = "0.1.0"
description = "Cloudflare-style 8-stage vulnerability discovery audit agent driven by Claude Code subscription auth"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
dependencies = [
"claude-agent-sdk>=0.0.20",
"click>=8.1",
"pydantic>=2.6",
"jsonschema>=4.21",
"pyyaml>=6.0",
"python-dotenv>=1.0",
"rich>=13.7",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
]
[project.scripts]
audit = "audit.cli:main"
[tool.setuptools.packages.find]
include = ["audit*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]