-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 868 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (37 loc) · 868 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
40
41
42
43
44
45
[project]
name = "xenserver-mcp"
version = "0.1.0"
description = "MCP implementation for XenServer administration"
readme = "README.md"
authors = [
{ name = "Fei Su", email = "acefei@163.com" }
]
requires-python = ">=3.14"
dependencies = [
"mcp>=1.0.0",
"xenapi>=24.9.0",
]
[project.scripts]
xenserver-mcp = "xenserver_mcp.server:main"
[build-system]
requires = ["uv_build>=0.8.19,<0.9.0"]
build-backend = "uv_build"
[tool.uv]
package = true
[dependency-groups]
dev = [
"pre-commit>=4.3.0",
"ruff>=0.13.1",
]
[tool.ruff]
target-version = "py314"
line-length = 88
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "C4", "UP", "ARG", "SIM", "TCH", "PTH"]
ignore = ["E501", "B008", "C901"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"tests/*" = ["ARG", "SIM"]