-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 1.16 KB
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
36
37
38
39
40
[project]
name = "provenance-risk-agent"
version = "0.3.0"
description = "A LangChain + LangGraph analyst for software-supply-chain provenance evidence"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115,<1.0",
"langchain>=1.0,<2.0",
"langgraph>=1.0,<2.0",
"langgraph-checkpoint-sqlite>=3.1,<4.0",
"mcp>=1.28,<2.0",
"pydantic>=2.7,<3.0",
"typer>=0.12,<1.0",
"rich>=13.7,<15.0",
"uvicorn[standard]>=0.30,<1.0",
]
[project.optional-dependencies]
openai = ["langchain-openai>=1.0,<2.0"]
dev = ["httpx>=0.27,<1.0", "pytest>=8.0,<9.0", "ruff>=0.8,<1.0"]
live = [
"albs-provenance-explorer @ https://github.com/xsub/albs-provenance-explorer/archive/9d33703ae923e03f3c77bd0d27a3c58ae37d638f.tar.gz",
"unified-dependency-graph @ https://github.com/xsub/EnterpriseLinux-SoftwareSupplyChain/archive/4ca0b0042bfe7b91b45b27f0af6054b3847afef6.tar.gz",
]
[project.scripts]
provenance-agent = "provenance_agent.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/provenance_agent"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.pytest.ini_options]
pythonpath = ["src"]