-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 840 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (32 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[project]
name = "mcp-rag"
version = "0.1.0"
description = "MCP RAG Server — 让 AI 助手智能检索本地文档"
readme = "README.md"
requires-python = ">=3.13"
license = "MIT"
authors = [
{ name = "Zhihan Xiong" },
]
keywords = ["mcp", "rag", "retrieval", "ai", "search"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"mcp>=1.26.0",
"sentence-transformers>=5.3.0",
"rank-bm25>=0.2.2",
"jieba>=0.42.1",
"chromadb>=1.0.0",
"watchdog>=4.0.0",
]
[project.scripts]
mcp-rag = "mcp_rag.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_rag"]