-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (67 loc) · 2 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (67 loc) · 2 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["hatchling", "versioningit"]
build-backend = "hatchling.build"
[project]
name = "party"
dynamic = ["version"]
description = "Page-wise Recognition of Text-y: line transcription without bounding polygons"
readme = {file = "README.md", content-type = "text/markdown"}
license = "Apache-2.0"
requires-python = ">=3.10,<3.14"
authors = [
{name = "Benjamin Kiessling", email = "mittagessen@l.unchti.me"},
]
keywords = ["htr", "ocr"]
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"torch>=2.5.0",
"timm",
"pillow-jxl-plugin",
"python-bidi",
"click",
"rich",
"threadpoolctl",
"lightning",
"lxml",
"pyarrow",
"htrmopo>=0.3,~=0.3",
"kraken~=7.0.0b5",
]
[project.urls]
Homepage = "http://kraken.re"
[project.scripts]
party = "party.cli:cli"
[project.entry-points."kraken.models"]
PartyModel = "party.party:PartyModel"
[project.entry-points."kraken.lightning_modules"]
PartyRecognitionModel = "party.model:PartyRecognitionModel"
[project.entry-points."kraken.configs"]
PartyRecognitionTrainingDataConfig = "party.configs:PartyRecognitionTrainingDataConfig"
PartyRecognitionTrainingConfig = "party.configs:PartyRecognitionTrainingConfig"
PartyRecognitionInferenceConfig = "party.configs:PartyRecognitionInferenceConfig"
[tool.hatch.version]
source = "versioningit"
[tool.versioningit]
default-version = "0.0.0+unknown"
[tool.versioningit.vcs]
method = "git"
default-tag = "0.0.0"
[tool.hatch.build]
exclude = [
"**/__pycache__",
"**/*.pyc",
]
[tool.hatch.build.targets.wheel]
packages = ["party"]
[tool.hatch.build.targets.sdist]
include = ["party/"]