-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (72 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
79 lines (72 loc) · 1.88 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
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
[build-system]
requires = ["setuptools>=75.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "flow_preprocessing"
dynamic = ["version"]
description = "Preprocessing Package for the Flow Project (flow-project.net)"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "Dana Rebecca Meyer", email = "dameyer@techfak.uni-bielefeld.de" },
{ name = "Jonas Widmer", email = "jonas.widmer@unibe.ch" }
]
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
dependencies = [
"flow-segmenter",
"pagexml-hf",
"lxml>=6.1.0",
"numpy",
"pillow>=12.1.1",
"pydantic",
"pyyaml",
"requests>=2.0.0",
"setuptools",
]
keywords = [
"flow-project",
"preprocessing",
"htrflow",
"digital-humanities",
"htr",
"handwritten-text-recognition",
"datasets",
"huggingface",
"nlp",
"machine-learning",
]
[dependency-groups]
dev = [
"line-profiler>=4.2.0",
"memory-profiler>=0.61.0",
"ruff",
"pytest>=9.0.3",
"pytest-cov>=4.1.0",
"sphinx>=7.4.3",
"sphinx-autodoc-typehints>=1.25.0",
"sphinx-rtd-theme>=1.2.2",
"mypy>=1.3.0",
"black>=25.12.0",
"pytest-asyncio>=1.3.0",
"jupyter>=1.1.1",
"jupyterlab>=4.5.5",
"ipywidgets>=8.1.8",
"notebook>=7.5.4",
]
[project.urls]
Homepage = "https://flow-project.net"
Repository = "https://github.com/The-Flow-Project/package-preprocessing"
[tool.uv.sources]
flow-segmenter = { git = "https://github.com/The-Flow-Project/package-segmenter" }
pagexml-hf = { git = "https://github.com/The-Flow-Project/pagexml-hf" }
[tool.mypy]
disable_error_code = ["import-untyped"]
[tool.setuptools.packages.find]
where = ["src"]
# packages = ["flow_preprocessing"]
[tool.setuptools.dynamic]
version = { attr = "flow_preprocessing.__version__" }