24 lines
511 B
TOML
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",
|
|
]
|