-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.19 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "zabbix-mcp-server"
version = "1.10"
description = "Production-quality MCP server for the complete Zabbix API"
readme = "README.md"
license = "AGPL-3.0-only"
requires-python = ">=3.10"
authors = [{ name = "initMAX s.r.o." }]
keywords = ["zabbix", "mcp", "model-context-protocol", "monitoring", "api"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Monitoring",
"Topic :: System :: Systems Administration",
]
dependencies = [
"mcp>=1.1.3",
"zabbix-utils>=2.0.2",
]
[project.scripts]
zabbix-mcp-server = "zabbix_mcp.cli:main"
[project.urls]
Homepage = "https://github.com/initMAX/zabbix-mcp-server"
Issues = "https://github.com/initMAX/zabbix-mcp-server/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/zabbix_mcp"]