Files
MASForensic/pyproject.toml
BattleTag 097d2ce472 Initial commit
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-09 17:36:26 +08:00

24 lines
511 B
TOML

[project]
name = "masforensics"
version = "0.1.0"
description = "Multi-Agent System for Digital Forensics"
requires-python = ">=3.14"
dependencies = [
"httpx[socks]>=0.28.1",
"pyyaml",
"regipy>=6.2.1",
]
[project.scripts]
masforensics = "main:main"
[tool.setuptools]
py-modules = ["main", "llm_client", "evidence_graph", "base_agent", "orchestrator", "tool_registry", "agent_factory"]
packages = ["agents", "tools"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
]