pyproject.toml•766 B
[project]
name = "mcp-kubernetes-python"
version = "1.0.0"
description = "MCP Server for Kubernetes management - Python version using FastMCP"
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp>=2.11.3",
"PyYAML>=6.0.1",
"kubernetes>=28.1.0",
"colorlog>=6.7.0",
"aiohttp>=3.12.15",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.5.0",
]
[project.scripts]
mcp-kubernetes = "mcp_kubernetes_server:main"
[tool.uv]
dev-dependencies = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.5.0",
]