Migrate to package

This commit is contained in:
2026-03-02 17:44:18 +00:00
parent 3e2386b9b6
commit 8dfd2048a5
13 changed files with 356 additions and 31 deletions

View File

@@ -1,7 +1,7 @@
[project]
name = "knowledge-search-mcp"
version = "0.1.0"
description = "Add your description here"
description = "MCP server for semantic search over Vertex AI Vector Search"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
@@ -15,9 +15,23 @@ dependencies = [
"pyyaml>=6.0",
]
[project.scripts]
knowledge-search-mcp = "knowledge_search_mcp.main:main"
[dependency-groups]
dev = [
"google-adk>=1.25.1",
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"ruff>=0.15.2",
"ty>=0.0.18",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
pythonpath = ["."]
[build-system]
requires = ["uv_build>=0.8.3,<0.9.0"]
build-backend = "uv_build"