28 lines
646 B
TOML
28 lines
646 B
TOML
|
|
[project]
|
||
|
|
name = "agent-platform"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Business-taugliche Agent-Plattform mit LiteLLM + Pydantic AI + MCP"
|
||
|
|
requires-python = ">=3.12"
|
||
|
|
dependencies = [
|
||
|
|
"fastapi>=0.115",
|
||
|
|
"uvicorn[standard]>=0.32",
|
||
|
|
"litellm>=1.50",
|
||
|
|
"pydantic-ai>=0.4",
|
||
|
|
"jinja2>=3.1",
|
||
|
|
"python-multipart>=0.0.12",
|
||
|
|
"aiosqlite>=0.20",
|
||
|
|
"httpx>=0.27",
|
||
|
|
"mcp>=1.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=68"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[tool.setuptools]
|
||
|
|
py-modules = ["agent", "llm", "db", "audit", "auth", "config", "api", "mcp_client"]
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
where = ["."]
|
||
|
|
include = ["agents*"]
|