Files
mcp-server-qdrant/pyproject.toml
2025-03-05 23:44:47 +01:00

33 lines
677 B
TOML

[project]
name = "mcp-server-qdrant"
version = "0.6.0"
description = "MCP server for retrieving context from a Qdrant vector database"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=0.9.1",
"qdrant-client[fastembed]>=1.12.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pre-commit>=4.1.0",
"pyright>=1.1.389",
"pytest>=8.3.3",
"pytest-asyncio>=0.23.0",
"ruff>=0.8.0"
]
[project.scripts]
mcp-server-qdrant = "mcp_server_qdrant:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
asyncio_mode = "auto"