-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
59 lines (53 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "docrag"
version = "0.1.0"
description = "An intelligent document analysis and comparison system powered by LLMs"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Riyaz Shaik" },
]
dependencies = [
"cfn-lint>=1.47.1",
"docx2txt>=0.9",
"faiss-cpu>=1.13.2",
"fastapi>=0.135.2",
"ipykernel>=7.2.0",
"langchain>=1.2.13",
"langchain-community>=0.4.1",
"langchain-core>=1.2.23",
"langchain-google-genai>=4.2.1",
"langchain-groq>=1.1.2",
"langchain-huggingface>=1.2.1",
"langchain-openai>=1.1.12",
"langchain-text-splitters>=1.1.1",
"peft>=0.18.1",
"pymupdf>=1.27.2.2",
"pypdf>=6.9.2",
"pytest>=9.0.2",
"python-dotenv>=1.2.2",
"python-multipart>=0.0.22",
"sentence-transformers>=5.3.0",
"streamlit>=1.55.0",
"structlog>=25.5.0",
"uvicorn>=0.42.0",
]
[project.optional-dependencies]
dev = [
"ipykernel>=7.2.0",
"pylint>=3.0.0",
"pytest>=9.0.2",
]
[project.scripts]
docrag = "main:main"
[tool.uv]
link-mode = "copy"
[tool.setuptools]
py-modules = ["main"]
[tool.setuptools.packages.find]
where = ["."]
include = ["exception*", "logger*", "prompt*", "src*", "utils*"]
exclude = ["tests*"]