forked from OCR-D/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (35 loc) · 1.03 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
[build-system]
requires = [
"setuptools>=44",
"wheel",
] # PEP 508 specifications.
build-backend = "setuptools.build_meta"
[project]
name = "ocrd"
authors = [{name = "Konstantin Baierer", email = "[email protected]"}]
license = {text = "Apache License 2.0"}
description = "OCR-D framework"
requires-python = ">=3.8"
dynamic = ['version', 'dependencies']
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools.dynamic.dependencies]
file = ["requirements.txt"]
[tool.setuptools.dynamic.version]
file = ["VERSION"]
[project.urls]
Homepage = "https://ocr-d.de"
Documentation = "https://ocr-d.de/core"
Repository = "https://github.com/OCR-D/core"
Issues = "https://github.com/OCR-D/core/issues"
[project.scripts]
ocrd = "ocrd.cli:cli"
ocrd-dummy = "ocrd.processor.builtin.dummy_processor:cli"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["*.json", '*.yml', '*.xml', '*.conf', '*.bash', '*.xsd']
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false