forked from CursorTouch/Windows-MCP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·72 lines (64 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
executable file
·72 lines (64 loc) · 1.75 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "windows-mcp"
version = "0.6.8"
description = "Lightweight MCP Server for interacting with Windows Operating System."
authors = [
{ name = "Jeomon George", email = "jeogeoalukka@gmail.com" }
]
readme = "README.md"
license = { file = "LICENSE.md" }
keywords = ["windows", "mcp", "ai", "desktop", "ai agent"]
requires-python = ">=3.13"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Programming Language :: Python :: 3.13",
"Topic :: Desktop Environment",
"Topic :: System :: Shells",
]
dependencies = [
"click>=8.2.1",
"comtypes>=1.4.15",
"fastmcp>=3.0",
"ipykernel>=7.2.0",
"markdownify>=1.1.0",
"pillow>=11.2.1",
"platformdirs>=4.3.8",
"posthog>=7.4.0",
"psutil>=7.0.0",
"python-dotenv>=1.1.0",
"python-levenshtein>=0.27.1",
"pywin32>=311",
"requests>=2.32.3",
"tabulate>=0.9.0",
"thefuzz>=0.22.1",
"uuid7>=0.1.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.9.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
]
[project.urls]
Homepage = "https://github.com/CursorTouch"
Repository = "https://github.com/CursorTouch/Windows-MCP"
Issues = "https://github.com/CursorTouch/Windows-MCP/issues"
[project.scripts]
windows-mcp = "windows_mcp.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"src/windows_mcp/uia/*.py" = ["F403", "F405"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"