26 lines
599 B
TOML
26 lines
599 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "opnsense-mcp"
|
|
version = "1.1.0"
|
|
description = "Model Context Protocol server for OPNsense firewall management"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = "MIT"
|
|
authors = [{ name = "OPNsense MCP" }]
|
|
keywords = ["mcp", "opnsense", "firewall", "hermes"]
|
|
dependencies = [
|
|
"mcp>=1.0.0",
|
|
"httpx>=0.27.0",
|
|
"pydantic>=2.0.0",
|
|
"pydantic-settings>=2.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
opnsense-mcp = "opnsense_mcp.server:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/opnsense_mcp"]
|