20 lines
462 B
TOML
20 lines
462 B
TOML
[project]
|
|
name = "sap-diagrams-mcp"
|
|
version = "0.1.0"
|
|
description = "MCP server exposing SAP BTP solution-diagram generation (sap-drawio backend) to any MCP client"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mcp>=1.2.0",
|
|
"httpx>=0.27",
|
|
]
|
|
|
|
[project.scripts]
|
|
sap-diagrams-mcp = "sap_diagrams_mcp.server:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/sap_diagrams_mcp"]
|