mcp-desktop-control/pyproject.toml

22 lines
557 B
TOML
Raw Permalink Normal View History

2026-06-24 20:43:41 +02:00
[project]
name = "mcp-desktop-control"
version = "0.1.0"
description = "MCP server for desktop automation and control."
authors = [
{name = "Filip Strajnar",email = "filip.strajnar@proton.me"},
{name = "Martijn Lammers",email = "m.b.alyanak@gmail.com"}
]
license = {text = "GPL-3.0"}
readme = "README.md"
requires-python = ">=3.11"
2026-06-24 20:43:41 +02:00
dependencies = [
"mcp[cli]>=1.28,<2"
2026-06-24 20:43:41 +02:00
]
[project.scripts]
mcp-desktop-control = "mcp_desktop_control.server:main"
2026-06-24 20:43:41 +02:00
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"