-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.68 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "automated-document-parser"
version = "0.1.6"
description = "A powerful and automated document parser built with LangChain for intelligent document processing"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.13"
license = { file = "LICENSE" }
authors = [
{ name = "Pulkit Dhingra", email = "pulkit12dhingra@example.com" }
]
keywords = ["langchain", "document-parser", "nlp"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"build>=1.3.0",
"faiss-cpu>=1.12.0",
"langchain>=0.3.0",
"langchain-community>=0.3.0",
"langchain-huggingface>=1.0.1",
"langchain-text-splitters>=1.0.0",
"pypdf>=5.1.0",
"python-docx>=1.1.0",
"python-magic>=0.4.27",
"sentence-transformers>=5.1.2",
"sphinx>=8.2.3",
"torch>=2.9.0",
"transformers>=4.57.1",
]
[project.optional-dependencies]
dev = [
"ruff>=0.14.4",
"pytest>=8.3.4",
"pre-commit>=4.0.1",
"pytest-cov>=7.0.0",
"twine>=6.2.0",
]
[project.urls]
Homepage = "https://github.com/Pulkit12dhingra/automated-document-parser"
Documentation = "https://pulkit12dhingra.github.io/automated-document-parser/"
Repository = "https://github.com/Pulkit12dhingra/automated-document-parser"
Issues = "https://github.com/Pulkit12dhingra/automated-document-parser/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/automated_document_parser"]
[tool.ruff]
extend-exclude = ["*.ipynb"]