-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 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
[project]
name = "docproc"
version = "1.0.0"
description = "Opinionated and Sophisticated Document Region Analyzer."
authors = [{ name = "Rithul Kamesh", email = "[email protected]" }]
requires-python = "==3.12.8"
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"pymupdf>=1.23.0,<2",
"rapid-latex-ocr>=0.0.9,<0.0.10",
"pillow>=11.1.0,<12",
"pytesseract>=0.3.13",
"opencv-python>=4.11.0.86",
]
[project.scripts]
docproc = "docproc.bin.main:main"
[tool.hatch.build.targets.sdist]
include = ["docproc"]
[tool.hatch.build.targets.wheel]
include = ["docproc"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"