-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.02 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
[build-system]
requires = ["setuptools>=69.5"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "m3docrag"
version = "0.0.1"
description = "Multimodal Document Understanding with RAG"
readme = "README.md"
requires-python = ">=3.10"
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"accelerate==1.1.0",
"loguru",
"requests",
"setuptools==69.5",
"transformers",
"tokenizers",
"flash-attn==2.5.8",
"bitsandbytes==0.43.1",
"safetensors",
"gpustat",
"icecream",
"pdf2image",
"numpy==1.26.4",
"torchvision",
"jsonlines",
"editdistance",
"einops",
"fire",
"peft",
"timm",
"sentencepiece",
"colpali-engine==0.3.1",
"easyocr",
"qwen-vl-utils",
"faiss-cpu",
"word2number",
"datasets>=3.0.0",
"python-dotenv",
]
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]