-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (39 loc) · 940 Bytes
/
pyproject.toml
File metadata and controls
41 lines (39 loc) · 940 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
37
38
39
40
41
[project]
name = "autogen_agent_base"
version = "0.1.0"
description = "AutoGen agent API with MCP tools (FastAPI). Connects to MCP over SSE, exposes /chat."
authors = [{ name = "Your Name", email = "you@example.com" }]
license = { text = "MIT" }
requires-python = ">=3.12,<=3.14"
dependencies = [
"autogen-agentchat",
"autogen-ext[openai,mcp]",
"openai",
"fastapi>=0.135.1",
"uvicorn[standard]>=0.41.0",
"pydantic>=2.0.0",
"python-dotenv>=1.2.0",
"mcp",
"setuptools>=80.9.0,<82.0.0",
]
[project.optional-dependencies]
tracing = [
"mlflow>=3.10.0",
]
dev = [
"pytest>=9.0.2",
]
llama = [
"llama-stack>=0.7.1",
"llama-stack-api>=0.7.1",
"ollama>=0.4.0",
"milvus-lite>=2.5.1",
"pymilvus>=2.6.9",
"chardet>=7.1.0",
"pypdf>=6.9.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[build-system]
requires = ["setuptools>=80.9.0"]
build-backend = "setuptools.build_meta"