-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 818 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 818 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
36
37
38
39
40
41
42
[project]
name = "doc-lib-mcp"
version = "0.1.1"
description = "A Documentation RAG MCP"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"mcp>=1.7.1",
"httpx>=0.27.0",
"asyncpg>=0.29.0",
"requests",
"python-dotenv",
"FlagEmbedding",
"torch",
"beautifulsoup4",
"lxml",
"anyio",
"psycopg2-binary",
"playwright",
"readability-lxml",
"mistune>=3.0.0",
"openai",
"pypandoc",
"lxml[html_clean]"
]
[[project.authors]]
name = "shifusen329"
email = "quanhong329@gmail.com"
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project.scripts]
doc-lib-mcp = "doc_lib_mcp:main"
[[tool.uv.index]]
name = "pytorch"
url = "https://download.pytorch.org/whl/nightly/cu128"
[tool.uv.sources]
torch = { index = "pytorch" }