-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
43 lines (40 loc) · 1.03 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
[project]
name = "vellum"
version = "0.1.0"
description = "RAG on scientific papers"
readme = "readme.md"
authors = [
{ name = "enwask", email = "enwask@ucf.edu" }
]
requires-python = ">=3.13"
dependencies = [
"colpali-engine",
"datasets>=4.0.0",
"detectron2",
"dotenv>=0.9.9",
"editables>=0.5",
"einops>=0.8.1",
"flash-attn>=2.8.1",
"hatchling>=1.27.0",
"langchain-community>=0.3.27",
"langchain-ollama>=0.3.5",
"langchain-openai>=0.3.28",
"layoutparser[layoutmodels]>=0.3.4",
"numpy>=2.3.1",
"opencv-python>=4.11.0.86",
"pdf2image>=1.17.0",
"pillow>=11.3.0",
"psutil>=7.0.0",
"qdrant-client>=1.14.3",
"torch>=2.7.1",
"torchvision>=0.22.1",
"transformers>=4.53.2",
]
[project.scripts]
main = "vellum:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv.sources]
colpali-engine = { git = "https://github.com/illuin-tech/colpali.git" }
detectron2 = { git = "https://github.com/facebookresearch/detectron2.git", rev = "main" }