-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
45 lines (37 loc) · 1.21 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "setuptools-ocrd"]
[project]
name = "docstruct"
authors = [
{name = "Robert Sachunsky", email = "sachunsky@informatik.uni-leipzig.de"},
]
description = "Document structure detection from PAGE to METS"
readme = "README.md"
license.text = "Apache-2.0"
requires-python = ">=3.8"
dynamic = ["version", "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-docstruct = "docstruct.proc:cli"
[project.urls]
Homepage = "https://github.com/bertsky/docstruct"
Repository = "https://github.com/bertsky/docstruct.git"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies.test = {file = ["requirements-test.txt"]}
[tool.setuptools]
packages = ["docstruct"]
package-data = {"*" = ["ocrd-tool.json"]}
[tool.coverage.run]
branch = true
source = ["docstruct"]