agentic-os/agents/ops_agent/pyproject.toml

25 lines
568 B
TOML

[project]
name = "ops-agent"
version = "0.1.0"
description = "OpsAgent — Infrastructure & DevOps monitoring agent for Proxmox and Kubernetes"
requires-python = ">=3.11"
dependencies = [
"langgraph>=0.2.0",
"langchain-core>=0.3.0",
"langchain-openai>=0.2.0",
"temporalio>=1.8.0",
"paramiko>=3.4.0",
"psycopg[binary]>=3.2.0",
"pydantic>=2.0.0",
"twilio>=8.0.0",
]
[project.scripts]
ops-worker = "ops_agent.temporal.worker:main"
ops-run = "ops_agent.run:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"