-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 1.12 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "vmware-aiops"
version = "1.5.18"
description = "VMware vCenter/ESXi AI-powered VM lifecycle and deployment tool"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "Wei Zhou", email = "wei-wz.zhou@broadcom.com" }]
dependencies = [
"pyvmomi>=8.0.3.0,<10.0",
"pyaml>=24.0,<27.0",
"typer>=0.12,<1.0",
"rich>=13.0,<16.0",
"apscheduler>=3.10,<4.0",
"httpx>=0.27,<1.0",
"python-dotenv>=1.0,<2.0",
"mcp[cli]>=1.0,<2.0",
"vmware-policy>=1.0.0,<2.0",
]
[dependency-groups]
dev = [
"pytest>=8.0,<10.0",
"pytest-cov>=5.0,<8.0",
"ruff>=0.5,<1.0",
]
[project.scripts]
vmware-aiops = "vmware_aiops.cli:app"
vmware-aiops-mcp = "mcp_server.server:main"
[tool.hatch.build.targets.wheel]
packages = ["vmware_aiops", "mcp_server"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"unit: Unit tests",
"integration: Integration tests (require vCenter)",
]