SurfSense/surfsense_mcp/pyproject.toml
2026-07-06 02:29:19 +02:00

27 lines
591 B
TOML

[project]
name = "surfsense-mcp"
version = "0.1.0"
description = "MCP server exposing SurfSense scrapers, knowledge base, and workspace tools over the REST API."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
dependencies = [
"mcp>=1.26.0",
"httpx>=0.27.0",
]
[project.scripts]
surfsense-mcp = "surfsense_mcp.__main__:main"
[dependency-groups]
dev = ["pytest>=8.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/surfsense_mcp"]
[tool.ruff]
target-version = "py311"