Files
computer/libs/python/mcp-server/pyproject.toml
Aditya Bavadekar a38219d3ef fix(python): standardize Python version across all packages
- Updated all `libs/python/*/pyproject.toml` files to require Python >=3.12
- Synchronized root `pyproject.toml` and regenerated `uv.lock`
2025-10-23 03:15:21 +05:30

30 lines
578 B
TOML

[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "cua-mcp-server"
description = "MCP Server for Computer-Use Agent (CUA)"
readme = "README.md"
requires-python = ">=3.12"
version = "0.1.14"
authors = [
{name = "TryCua", email = "gh@trycua.com"}
]
dependencies = [
"mcp>=1.6.0,<2.0.0",
"cua-agent[all]>=0.4.0,<0.5.0",
"cua-computer>=0.4.0,<0.5.0",
]
[project.scripts]
cua-mcp-server = "mcp_server.server:main"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"black>=23.9.1",
"ruff>=0.0.292",
]