-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.04 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pdf2struct"
version = "0.2.0"
description = "pdf2struct: extract structured JSON from PDFs (text, metadata, tables, OCR, invoice key-value fields)."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [{name="Kubenew"}]
keywords = ["pdf", "ocr", "invoice", "parser", "extract", "table", "json"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Text Processing",
]
dependencies = [
"pydantic>=2.0.0",
"pdfplumber>=0.11.0",
]
[project.optional-dependencies]
ocr = [
"pytesseract>=0.3.10",
"Pillow>=10.0.0"
]
dev = ["pytest>=7.0.0", "build>=1.0.0", "twine>=4.0.0"]
[project.scripts]
pdf2struct = "pdf2struct.cli:main"
[project.urls]
Homepage = "https://github.com/Kubenew/pdf2struct"
Repository = "https://github.com/Kubenew/pdf2struct"
[tool.setuptools.packages.find]
where = ["."]
include = ["pdf2struct*"]