-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 766 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[project]
name = "linuxir"
version = "0.1.0"
description = "LinuxIR Agent — a multi-agent Linux DFIR triage system with architectural, model-independent evidence-integrity guardrails."
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.12"
dependencies = [
"anthropic>=0.69",
"claude-agent-sdk>=0.2.93",
"pydantic>=2.7",
"pyyaml>=6.0",
]
[project.scripts]
linuxir = "linuxir.cli:main"
[project.optional-dependencies]
dev = ["pytest>=8.0"]
web = [
"fastapi>=0.110",
"uvicorn>=0.29",
"sse-starlette>=2.0",
"python-multipart>=0.0.9",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["linuxir"]
[tool.pytest.ini_options]
testpaths = ["tests"]