-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (56 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
59 lines (56 loc) · 1.43 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "course_graph"
version = "0.1.0"
readme = "README.md"
requires-python = ">=3.11"
description = "Automatic Construction of Course Knowledge Graphs via LLMs"
license = { file = "LICENSE" }
authors = [{ name = "Data Science Lab at China Pharmaceutical University" }]
maintainers = [{ name = "wangtao", email = "wangtao.cpu@gmail.com" }]
dependencies = [
"torch>=2.4.0",
"accelerate>=0.34.0",
"openai>=1.43.1",
"fitz==0.0.1.dev2",
"pymupdf==1.24.10",
"loguru==0.7.2",
"modelscope==1.16.1",
"opencv-python==4.10.0.84",
"python-docx==1.1.2",
"python-pptx-interface==0.0.12",
"sentence-transformers==3.0.1",
"torchvision>=0.19",
"tqdm==4.66.4",
"transformers>=4.43.3",
"vllm>=0.7.3",
"paddleocr==2.8.1",
"paddlepaddle==2.6.1",
"ray>=2.35.0",
"docstring-parser==0.16",
"doclayout-yolo==0.0.3",
"shortuuid>=1.0.13",
"fastapi>=0.115.6",
"singleton-decorator>=1.0.0",
"pymilvus>=2.5.6",
"neo4j>=5.28.1",
"mcp[cli]>=1.6.0",
"mistune>=3.1.3",
]
[dependency-groups]
dev = [
"evaluate>=0.4.3",
"pytorch-crf==0.7.2",
"torchcrf>=1.1.0",
"scikit-learn>=1.6.1",
"seqeval>=1.2.2",
"swanlab>=0.5.5",
"tabulate>=0.9.0",
"ipykernel>=6.29.5",
]
[tool.maturin]
module-name = "course_graph._core"
python-packages = ["course_graph"]
python-source = "src"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"