-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 931 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 931 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
36
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "opsagent"
version = "0.1.0"
description = "AI-powered CI/CD failure first-responder using LangGraph + MCP"
requires-python = ">=3.10"
license = { text = "MIT" }
dependencies = [
"langgraph>=0.2.0",
"langchain-anthropic>=0.3.0",
"langchain-core>=0.3.0",
"langchain-mcp-adapters>=0.1.0",
"fastmcp>=2.0.0",
"click>=8.1.0",
"python-dotenv>=1.0.0",
"httpx>=0.27.0",
]
[project.optional-dependencies]
build = ["pyinstaller>=6.0", "typer>=0.9"]
openai = ["langchain-openai>=0.2.0"]
google = ["langchain-google-genai>=2.0.0"]
all-providers = ["langchain-openai>=0.2.0", "langchain-google-genai>=2.0.0"]
dev = ["pytest>=8.0", "pytest-asyncio>=0.24", "respx>=0.21"]
[project.scripts]
opsagent = "cli:main"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.hatch.build.targets.wheel]
packages = ["."]