Files
agent/pyproject.toml
2026-03-12 16:55:23 +03:00

25 lines
540 B
TOML

[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "agent"
version = "0.1.0"
description = "Agent for Code-Aware Technical Documentation and Analysis"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.116",
"uvicorn>=0.35",
"pydantic>=2.11",
"langgraph>=0.6",
"langgraph-checkpoint-postgres>=2.0",
"PyYAML>=6.0",
"requests>=2.32",
"SQLAlchemy>=2.0",
"psycopg[binary]>=3.2",
]
[tool.setuptools.packages.find]
where = ["src"]