-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 762 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 762 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agno-dev-toolkit"
version = "0.1.1"
description = "MCP Server for Agno framework architecture validation and knowledge RAG."
requires-python = ">=3.10"
dependencies = [
"fastapi",
"uvicorn",
"pydantic>=2.0",
"pydantic-settings",
"python-dotenv",
"httpx",
"sentence-transformers",
"chromadb",
"mcp",
"tree-sitter>=0.22",
"tree-sitter-python>=0.22",
]
[project.scripts]
agno-toolkit = "mcp_server.stdio_transport:main"
[project.optional-dependencies]
milvus = ["pymilvus>=2.4.0"]
dev = ["pytest", "pytest-anyio", "httpx"]
[tool.hatch.build.targets.wheel]
packages = ["mcp_server", "rag", "config", "validation", "analysis"]