forked from ndl-lab/ndlocr-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 839 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 839 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ndlocr-lite"
version = "1.0.0"
description = "NDLOCR-Lite CLI Application"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"flet==0.27.6",
"dill==0.3.8",
"lxml==5.4.0",
"networkx==3.3",
"onnxruntime==1.23.2",
"pillow==12.1.1",
"ordered-set==4.1.0",
"protobuf==6.31.1",
"pyparsing==3.1.2",
"PyYAML==6.0.1",
"tqdm==4.66.4",
"reportlab==4.2.5",
"pypdfium2==4.30.0",
"numpy==2.2.2"
]
[project.scripts]
ndlocr-lite = "ocr:main"
[tool.setuptools]
package-dir = {"" = "src"}
py-modules = ["ocr", "deim", "parseq", "ndl_parser", "tablerecog"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"model" = ["*.onnx"]
"config" = ["*.yaml"]