33 lines
648 B
TOML
33 lines
648 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pyMCPBroker"
|
|
version = "0.2.3"
|
|
description = "Small FastAPI MCP broker exposing stable meta-tools over stdio MCP sources"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"fastapi>=0.111,<1",
|
|
"uvicorn>=0.30,<1",
|
|
"pydantic>=2.7,<3",
|
|
"jsonschema>=4.21,<5",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest>=8,<10",
|
|
"httpx>=0.27,<1",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["pyMCPBroker*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "-q"
|
|
testpaths = ["tests"]
|