-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.76 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "win-mcp-server"
version = "0.2.3"
description = "MCP server for Windows Remote Management (WinRM) with secure domain authentication"
authors = [{name = "Rory McMahon", email = "rory.mcmahon@vocus.com.au"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8"
keywords = ["mcp", "winrm", "windows", "remote", "management", "powershell"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: System :: Networking",
]
dependencies = [
"mcp==1.14.1",
"pywinrm==0.4.3",
]
[project.optional-dependencies]
dev = [
"pytest==8.3.3",
"pytest-asyncio==0.24.0",
"black==24.8.0",
"isort==5.13.2",
]
security = [
"safety>=3.0.0",
"pip-audit>=2.6.0",
]
[project.urls]
Homepage = "https://github.com/InfraMCP/win-mcp-server"
Repository = "https://github.com/InfraMCP/win-mcp-server"
Issues = "https://github.com/InfraMCP/win-mcp-server/issues"
Documentation = "https://github.com/InfraMCP/win-mcp-server#readme"
[project.scripts]
win-mcp-server = "win_mcp_server:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 88