-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 1.71 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "opendataloader-pdf-llamaindex"
version = "0.0.0"
description = "LlamaIndex reader for OpenDataLoader PDF — fast, accurate, local PDF extraction"
authors = [{ name = "opendataloader-project", email = "open.dataloader@hancom.com" }]
requires-python = ">=3.10,<4.0"
readme = "README.md"
license = "Apache-2.0"
keywords = ["llamaindex", "llama-index", "pdf", "reader", "document-parsing", "rag"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: General",
]
dependencies = [
"llama-index-core>=0.13.0,<0.15",
"opendataloader-pdf>=2.1.0",
]
[tool.hatch.build.targets.wheel]
include = ["llama_index/"]
[tool.hatch.build.targets.sdist]
include = ["llama_index/"]
[project.urls]
Homepage = "https://github.com/opendataloader-project/opendataloader-pdf"
Repository = "https://github.com/opendataloader-project/opendataloader-pdf-llamaindex"
Issues = "https://github.com/opendataloader-project/opendataloader-pdf-llamaindex/issues"
[project.optional-dependencies]
dev = ["pytest>=8.0", "pytest-socket>=0.7.0", "ruff>=0.5.0", "black>=24.0"]
[tool.black]
line-length = 100
[tool.ruff]
line-length = 100
target-version = "py310"
exclude = ["dist", "build", "docs", "*.ipynb"]
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []