Implement corpus indexing and MCP search
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
[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"]
|
||||
Reference in New Issue
Block a user