[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "qure-semantic-search-mcp"
version = "0.1.0"
description = "Semantic Search MCP server (Qure assignment)"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]",
"langchain>=0.3.0",
"langchain-anthropic>=0.3.0",
"langchain-google-genai>=2.0.0",
"langsmith>=0.1.0",
"python-dotenv>=1.0.0",
"pydantic>=2.0.0",
"openai>=1.40.0", # For SGR searcher with structured output
]
[project.scripts]
qure-semantic-search-mcp = "src.server:main"
# Настройка setuptools для src-layout
[tool.setuptools.packages.find]
where = ["."]
include = ["src*", "eval*"]