forked from 12Matt3r/Supervisorai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 717 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 717 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
[project]
name = "supervisor-mcp-agent"
version = "0.1.0"
description = "Comprehensive supervisor MCP agent for monitoring and auditing other agents"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp>=0.5.0",
"pydantic>=2.0.0",
"asyncio-throttle>=1.0.2",
"psutil>=5.9.0",
"jsonschema>=4.17.0",
"aiofiles>=23.1.0",
"httpx>=0.24.0",
"typing-extensions>=4.0.0",
"dataclasses-json>=0.6.0"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/supervisor_agent"]
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.0.261"
]