31 lines
603 B
TOML
31 lines
603 B
TOML
[build-system]
|
|
requires = ["setuptools>=77"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "corpus-mcp"
|
|
version = "0.1.0"
|
|
description = "Build and serve full-text searchable document corpora over MCP"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = "MIT"
|
|
authors = [{ name = "corpus-mcp contributors" }]
|
|
dependencies = [
|
|
"mcp>=1.28,<2",
|
|
]
|
|
|
|
[project.scripts]
|
|
corpus-mcp = "corpus_mcp.cli:main"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = ["--import-mode=importlib"]
|
|
testpaths = ["tests"]
|