forked from opendatalab/mineru-vl-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.29 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
60
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mineru_vl_utils"
dynamic = ["version"]
authors = [
{ name="Jin Zhen Jiang", email="jinzhenjiang@pjlab.org.cn" },
{ name="Zhao Xiao Meng", email="zhaoxiaomeng@pjlab.org.cn" },
{ name="Zhao Zhi Yuan", email="zhaozhiyuan@pjlab.org.cn" },
]
description = "Utilities for MinerU Vision-Language models"
readme = "README.md"
requires-python = ">=3.10,<3.14"
dependencies = [
"httpx",
"httpx-retries",
"aiofiles",
"pillow",
"pydantic",
"loguru",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "AGPL-3.0"
license-files = ["LICEN[CS]E*"]
[project.urls]
Homepage = "https://github.com/opendatalab/mineru-vl-utils"
Issues = "https://github.com/opendatalab/mineru-vl-utils/issues"
[project.optional-dependencies]
transformers = [
"torch>=2.6.0,<3",
"transformers>=4.51.1,<5.0.0",
"accelerate>=1.5.1",
"torchvision",
]
vllm = [
"vllm>=0.10.1.1,<0.12",
]
mlx = [
"mlx-vlm>=0.3.3,<0.4.0",
]
lmdeploy = [
"lmdeploy>=0.10.2,<0.12",
"qwen_vl_utils",
]
[tool.setuptools.dynamic]
version = { attr = "mineru_vl_utils.version.__version__" }
[tool.black]
line-length = 128
[tool.ruff]
line-length = 128