-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
56 lines (54 loc) · 1.42 KB
/
pyproject.toml
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
[project]
name = "course_graph"
version = "0.1.0"
readme = "README.md"
requires-python = ">=3.10"
description = "Automatic Construction of Course Knowledge Graphs via LLMs"
license = { file = "LICENSE" }
authors = [{ name = "Data Science Lab at China Pharmaceutical University" }]
maintainers = [{ name = "wangtao2001", email = "[email protected]" }]
dependencies = [
"torch>=2.4.0",
"accelerate>=0.34.0",
"openai>=1.43.1",
"comtypes==1.4.6",
"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",
"pytorch-crf==0.7.2",
"python-pptx-interface==0.0.12",
"sentence-transformers==3.0.1",
"setuptools>=69.5.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",
"maturin==1.7.4",
"docstring-parser==0.16",
"doclayout-yolo==0.0.3",
"shortuuid>=1.0.13",
"jupyter>=1.1.1",
"fastapi>=0.115.6",
"trl>=0.14.0",
"singleton-decorator>=1.0.0",
"tabulate>=0.9.0",
"torchcrf>=1.1.0",
"scikit-learn>=1.6.1",
"swanlab>=0.5.2",
"evaluate>=0.4.3",
"pymilvus>=2.5.6",
"neo4j>=5.28.1",
]
[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"