-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 776 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (24 loc) · 776 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agentforge-echo-plugin"
version = "1.0.0"
description = "Canonical test-rig plugin for AgentForge. Deterministic, zero external deps — the pre-release smoke gate for the plugin system."
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115",
"pydantic>=2.0",
]
[project.entry-points."agentforge.plugins"]
echo = "agentforge_echo"
[tool.hatch.build.targets.wheel]
packages = ["agentforge_echo"]
[tool.hatch.build.targets.wheel.force-include]
"agentforge_echo/plugin.json" = "agentforge_echo/plugin.json"
"agentforge_echo/agents/echo_agent/AGENT.md" = "agentforge_echo/agents/echo_agent/AGENT.md"
[dependency-groups]
dev = [
"pytest>=9.0",
"httpx>=0.28",
]