-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
38 lines (29 loc) · 929 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools-ocrd>=0.0.19"]
build-backend = "setuptools.build_meta"
[project]
name = "ocrd-page-to-alto"
authors = [
{name = "Konstantin Baierer", email = "[email protected]"}
]
license = {text = "Apache License 2.0"}
description = "Convert PAGE (v. 2019) to ALTO (v. 2.0 - 4.2)"
requires-python = ">=3.7"
dynamic = ['version', 'dependencies']
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools.dynamic.dependencies]
file = ["requirements.txt"]
[project.urls]
Homepage = "https://github.com/OCR-D/page-to-alto"
Repository = "https://github.com/OCR-D/page-to-alto"
[project.scripts]
page-to-alto = "ocrd_page_to_alto.cli:main"
ocrd-page2alto-transform = "ocrd_page_to_alto.ocrd_cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["*.json"]
[tool.setuptools.packages.find]
where = ["src"]