-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1011 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 loc) · 1011 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
37
38
39
40
41
42
43
44
45
46
47
[project]
name = "agentic-rag"
version = "0.1.0"
description = "Agentic RAG pipeline for enterprise document analysis"
requires-python = ">=3.13"
dependencies = [
"openai>=1.0.0",
"python-dotenv>=1.0.0",
"pymupdf>=1.24.0",
"pdf2image>=1.16.0",
"pillow>=10.0.0",
"chromadb>=0.4.0",
"tiktoken>=0.5.0",
"pandas>=2.0.0",
"numpy>=1.24.0",
"jupyter>=1.0.0",
"ipywidgets>=8.0.0",
"fpdf2>=2.7.0",
"diagrams>=0.25.1",
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"python-multipart>=0.0.6",
]
[project.optional-dependencies]
dev = ["pytest>=7.0.0", "ruff>=0.1.0", "pytest-asyncio>=0.23.0"]
vision = ["transformers>=4.40.0", "torch>=2.0.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["agentic_rag"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
line-length = 100
target-version = "py313"
[dependency-groups]
dev = [
"pytest>=9.0.2",
]