-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
39 lines (35 loc) · 865 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "pdftext"
version = "0.3.18"
description = "Extract structured text from pdfs quickly"
authors = ["Vik Paruchuri <vik.paruchuri@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/VikParuchuri/pdftext"
keywords = ["pdf", "text", "extraction"]
packages = [
{include = "pdftext"}
]
include = [
"extract_text.py",
"models/dt.joblib",
"models/dt.onnx"
]
[tool.poetry.dependencies]
python = "^3.10"
pypdfium2 = "^4.29.0"
pydantic = "^2.7.1"
pydantic-settings = "^2.2.1"
onnxruntime = "^1.19.2"
[tool.poetry.group.dev.dependencies]
pymupdf = "^1.24.2"
datasets = "^2.19.0"
pdfplumber = "^0.11.0"
pillow = "^10.3.0"
rapidfuzz = "^3.8.1"
tabulate = "^0.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
pdftext = "extract_text:main"