mirror of
https://github.com/trycua/computer.git
synced 2025-12-31 02:19:58 -06:00
41 lines
735 B
TOML
41 lines
735 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.11"
|
|
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",
|
|
]
|
|
|
|
[tool.black]
|
|
line-length = 100
|
|
target-version = ["py311"]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py311"
|
|
select = ["E", "F", "B", "I"]
|
|
fix = true
|