-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 998 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 998 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pygexml"
version = "0.2.1"
description = "A minimal Python wrapper around the PAGE-XML format for OCR output"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
authors = [
{ name = "Mirko Westermeier", email = "mirko.westermeier@uni-muenster.de" },
{ name = "Katharina Dietz", email = "katharina.dietz@uni-muenster.de" },
]
dependencies = [
"lxml",
"dataclasses-json"
]
[project.urls]
Homepage = "https://github.com/SCDH/pygexml"
Repository = "https://github.com/SCDH/pygexml"
Documentation = "https://scdh.github.io/pygexml"
Issues = "https://github.com/SCDH/pygexml/issues"
[tool.setuptools.package-data]
pygexml = ["py.typed"]
[project.optional-dependencies]
strategies = ["hypothesis"]
dev = ["mypy", "pyright", "black", "lxml-stubs"]
test = ["pytest", "hypothesis"]
docs = ["pdoc"]
[tool.setuptools]
packages = ["pygexml"]
[tool.mypy]
strict = true