-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 750 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 750 Bytes
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
[project]
name = "vsphere-mcp-pro"
version = "0.2.0"
description = "Feature-rich, secure MCP server for VMware vCenter 8.0+"
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
dependencies = [
"mcp>=1.14.0",
"requests>=2.32.0",
"urllib3>=2.2.0",
"pydantic>=2.7.0",
"python-dotenv>=1.0.0",
"uvicorn>=0.30.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
"ruff>=0.4.0",
"mypy>=1.10.0",
"types-requests>=2.32.0",
]
[project.scripts]
vsphere-mcp-pro = "vsphere_mcp_pro.server:main"
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true