Part of GeneseasX golden-vessel tooling (see homelab-vault Projects/vessel-troubleshoot-stack).
24 lines
537 B
TOML
24 lines
537 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "asterisk-mcp"
|
|
version = "1.0.0"
|
|
description = "Model Context Protocol server for Asterisk in Docker on ship VM"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = "MIT"
|
|
keywords = ["mcp", "asterisk", "voip", "docker"]
|
|
dependencies = [
|
|
"mcp>=1.0.0",
|
|
"pydantic>=2.0.0",
|
|
"pydantic-settings>=2.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
asterisk-mcp = "asterisk_mcp.server:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/asterisk_mcp"]
|