All checks were successful
Build and Push Proxmox MCP Docker Image / build (push) Successful in 7s
20 lines
464 B
TOML
20 lines
464 B
TOML
[project]
|
|
name = "proxmox-mcp-custom"
|
|
version = "0.1.0"
|
|
description = "Custom Proxmox MCP Server"
|
|
dependencies = [
|
|
"mcp",
|
|
"proxmoxer",
|
|
"requests", # Required for proxmoxer https backend
|
|
"uvicorn",
|
|
"fastapi",
|
|
"python-dotenv", # For local development
|
|
]
|
|
requires-python = ">=3.11"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.uv]
|
|
python-version = "3.11" # Specify desired Python version for uv |