55 lines
1.2 KiB
TOML
55 lines
1.2 KiB
TOML
[project]
|
|
name = "knowledge-search-mcp"
|
|
version = "0.1.0"
|
|
description = "MCP server for semantic search over Vertex AI Vector Search"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"aiohttp>=3.13.3",
|
|
"gcloud-aio-auth>=5.4.2",
|
|
"gcloud-aio-storage>=9.6.1",
|
|
"google-auth>=2.48.0",
|
|
"google-genai>=1.64.0",
|
|
"mcp[cli]>=1.26.0",
|
|
"pydantic-settings>=2.9.1",
|
|
"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",
|
|
"pytest-cov>=6.0.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"
|
|
|
|
[tool.ruff]
|
|
exclude = ["scripts", "tests"]
|
|
|
|
[tool.ty.src]
|
|
exclude = ["scripts", "tests"]
|
|
|
|
[tool.ruff.lint]
|
|
select = ['ALL']
|
|
ignore = [
|
|
'D203', # one-blank-line-before-class
|
|
'D213', # multi-line-summary-second-line
|
|
'COM812', # missing-trailing-comma
|
|
'ANN401', # dynamically-typed-any
|
|
'ERA001', # commented-out-code
|
|
]
|