-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
80 lines (72 loc) · 3.82 KB
/
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
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
80
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "setuptools-ocrd"]
[project]
name = "workflow_configuration"
authors = [
{name = "Robert Sachunsky", email = "[email protected]"},
]
description = "a makefilization for OCR-D workflows, with configuration examples"
readme = "README.md"
license = {text = "Apache License 2.0"}
requires-python = ">=3.8"
keywords = ["ocr", "ocr-d"]
dynamic = ["version", "dependencies", "optional-dependencies"]
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Text Processing",
]
[project.scripts]
ocrd-import = "workflow_configuration.ocrd_import:cli"
ocrd-page-transform = "workflow_configuration.ocrd_page_transform:cli"
page-add-nsprefix-pc = "workflow_configuration.xsl_transform:cli"
page-ensure-readingorder = "workflow_configuration.xsl_transform:cli"
page-ensure-textequiv-conf = "workflow_configuration.xsl_transform:cli"
page-ensure-textequiv-index = "workflow_configuration.xsl_transform:cli"
page-ensure-textequiv-unicode = "workflow_configuration.xsl_transform:cli"
page-extract-glyphs = "workflow_configuration.xsl_transform:cli"
page-extract-lines = "workflow_configuration.xsl_transform:cli"
page-extract-text = "workflow_configuration.xsl_transform:cli"
page-extract-words = "workflow_configuration.xsl_transform:cli"
page-fix-coords = "workflow_configuration.xsl_transform:cli"
page-flatten-tableregions = "workflow_configuration.xsl_transform:cli"
page-move-alternativeimage-below-page = "workflow_configuration.xsl_transform:cli"
page-remove-all-regions = "workflow_configuration.xsl_transform:cli"
page-remove-alternativeimages = "workflow_configuration.xsl_transform:cli"
page-remove-dead-regionrefs = "workflow_configuration.xsl_transform:cli"
page-remove-empty-lines = "workflow_configuration.xsl_transform:cli"
page-remove-empty-readingorder = "workflow_configuration.xsl_transform:cli"
page-remove-empty-text-regions = "workflow_configuration.xsl_transform:cli"
page-remove-glyphs = "workflow_configuration.xsl_transform:cli"
page-remove-lines = "workflow_configuration.xsl_transform:cli"
page-remove-metadataitem = "workflow_configuration.xsl_transform:cli"
page-remove-regions = "workflow_configuration.xsl_transform:cli"
page-remove-text-regions = "workflow_configuration.xsl_transform:cli"
page-remove-textequiv = "workflow_configuration.xsl_transform:cli"
page-remove-words = "workflow_configuration.xsl_transform:cli"
page-rename-id-clashes = "workflow_configuration.xsl_transform:cli"
page-rm-nsprefix-pc = "workflow_configuration.xsl_transform:cli"
page-set-nsversion-2019 = "workflow_configuration.xsl_transform:cli"
page-sort-textequiv-index = "workflow_configuration.xsl_transform:cli"
page-textequiv-lines-to-regions = "workflow_configuration.xsl_transform:cli"
page-textequiv-words-to-lines = "workflow_configuration.xsl_transform:cli"
page-unflatten-tableregions = "workflow_configuration.xsl_transform:cli"
mets-add-nsprefix-mets = "workflow_configuration.xsl_transform:cli"
mets-alias-filegrp = "workflow_configuration.xsl_transform:cli"
mets-copy-agents = "workflow_configuration.xsl_transform:cli"
fix-page-coords = "workflow_configuration.fix_page_coords:cli"
ocrd-make = "workflow_configuration.shellscript:cli"
[project.urls]
Homepage = "https://github.com/bertsky/workflow_configuration"
Repository = "https://github.com/bertsky/workflow_configuration.git"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools]
packages = ["workflow_configuration"]
package-data = {"*" = ["*.json", "*.xsl", "*.mk", "*.sh", "Makefile"]}