-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (78 loc) · 2.19 KB
/
Copy pathpyproject.toml
File metadata and controls
85 lines (78 loc) · 2.19 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[project]
name = "ingestlib"
version = "0.3.1"
description = "Self-hosted document intelligence for RAG — parse, classify, and split PDF/DOCX/PPTX into searchable, cited, retrieval-ready chunks"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.12"
authors = [
{ name = "ramacharanreddy-k", email = "ramacharanreddykasireddy@gmail.com" },
]
keywords = [
"rag",
"document-intelligence",
"document-parsing",
"ocr",
"chunking",
"hybrid-search",
"retrieval",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Indexing",
]
dependencies = [
"boto3>=1.43.29",
"botocore[crt]>=1.43",
"fastembed>=0.8.0",
"httpx>=0.27",
"langchain-aws>=1.5.1",
# runs the OCR inference server on Apple Silicon; never imported by the
# library itself — NVIDIA users run vLLM instead (see README)
"mlx-vlm>=0.6.4; sys_platform == 'darwin' and platform_machine == 'arm64'",
"paddleocr>=3.7.0",
"paddlepaddle>=3.3.1",
"paddlex[genai-client,ocr]==3.7.1",
"pgvector>=0.4",
"Pillow>=10.0",
"pinecone>=9.1.0",
"psycopg[binary]>=3.2",
"pydantic>=2.0",
"pymilvus>=2.6",
"pymongo>=4.10",
"pypdfium2>=4.0",
"python-dotenv>=1.0",
"pyyaml>=6.0.2",
"qdrant-client>=1.18.0",
"sqlite-vec>=0.1.6",
]
[project.urls]
Homepage = "https://github.com/LangModule/ingestlib"
Repository = "https://github.com/LangModule/ingestlib"
Issues = "https://github.com/LangModule/ingestlib/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/ingestlib"]
[dependency-groups]
dev = [
"pytest>=8.0",
"ruff>=0.15.17",
"pytest-asyncio>=0.24",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"
asyncio_mode = "auto"