18 lines
358 B
TOML
18 lines
358 B
TOML
[project]
|
|
name = "bookstack-mcp"
|
|
version = "1.0.0"
|
|
description = "MCP server for a self-hosted BookStack wiki"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastmcp>=3.4,<4",
|
|
"httpx>=0.27",
|
|
"uvicorn>=0.30",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["bookstack_mcp"]
|