-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "ghostdesk"
version = "7.1.0"
description = "MCP server to control a virtual Linux desktop from an LLM agent"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
authors = [
{ name = "Yoann Vanitou", email = "yvanitou@gmail.com" },
]
keywords = ["mcp", "desktop", "automation", "llm"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
]
dependencies = [
"mcp[cli]>=1.27",
"Pillow>=10.0",
# Thin CFFI binding over libwayland-client; Ghostdesk talks directly
# to the Wayland compositor for every mouse/keyboard action via the
# zwlr_virtual_pointer_v1 and zwp_virtual_keyboard_v1 protocols.
"pywayland>=0.4.18,<0.5",
]
[project.scripts]
ghostdesk = "ghostdesk.server:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"pytest-cov>=6.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/ghostdesk"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.coverage.run]
source = ["ghostdesk"]
[tool.coverage.report]
show_missing = true
skip_empty = true