-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (33 loc) · 972 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
40
[build-system]
requires = [ "setuptools>=61" ]
[project]
name = "textbite"
version = "1.0.0"
description = "Toolkit for extracting logical chunks from complex document pages."
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = ["Layout analysis", "text segmentation", "machine learning", "language models", "graph neural networks", "object detection", "YOLOv8"]
authors = [
{email = "[email protected]", name = "Martin Kostelník"},
{email = "[email protected]", name = "Karel Beneš"},
]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"shapely",
"pero-ocr",
"ultralytics",
"transformers",
"torch_geometric",
]
[tool.setuptools]
include-package-data = false
[tool.setuptools.package-dir]
"textbite" = "textbite"
[project.scripts]
textbite = "textbite.infer:main"