-
Notifications
You must be signed in to change notification settings - Fork 754
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 834 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 834 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
[project]
name = "dolphin"
version = "2.0.0"
description = "Document Image Parsing via Heterogeneous Anchor Prompting"
readme = "README.md"
requires-python = ">=3.10,<3.13"
license = { text = "MIT" }
dependencies = [
"datasets>=3.6.0",
"torch>=2.6.0",
"torchvision>=0.21.0",
"transformers>=4.51.0",
"accelerate>=1.4.0",
"decord>=0.6.0",
"Levenshtein>=0.27.1",
"qwen_vl_utils",
"matplotlib",
"jieba",
"opencv-python",
"beautifulsoup4",
"albumentations>=1.4.0",
"pymupdf>=1.26",
"huggingface-hub",
]
[tool.uv]
index-strategy = "unsafe-best-match"
environments = ["sys_platform == 'linux'"]
[[tool.uv.index]]
name = "pytorch-rocm"
url = "https://download.pytorch.org/whl/rocm6.3"
[tool.uv.sources]
torch = { index = "pytorch-rocm" }
torchvision = { index = "pytorch-rocm" }