-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
49 lines (43 loc) · 1.28 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
45
46
47
48
49
[tool.poetry]
name = "pagexml-tools"
version = "0.5.0"
description = "Utility functions for reading PageXML files"
authors = ["Marijn Koolen <marijn.koolen@huygens.knaw.nl>", "Bram Buitendijk <bram.buitendijk@di.huc.knaw.nl>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/knaw-huc/pagexml"
repository = "https://github.com/knaw-huc/pagexml"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
packages = [{ include = "pagexml" }]
[tool.poetry.dependencies]
python = ">=3.8 <4.0"
fuzzy-search = "^2.1.0"
matplotlib = ">=3.7.0"
numpy = ">=1.22.3"
pandas = ">=1.5.3 <3.0.0"
py7zr = "^0.20.2"
python-dateutil = "^2.8.2"
pyyaml = "^6.0"
scipy = ">=1.7.0"
seaborn = "^0.13.0"
tqdm = "^4.64.1"
xmltodict = "^0.13.0"
shapely = "^2.0.3"
[tool.poetry.dev-dependencies]
[tool.poetry.group.test.dependencies]
icecream = "^2.1.2"
loguru = "^0.6.0"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/knaw-huc/pagexml/issues"
[tool.poetry.scripts]
version = 'poetry_scripts:version'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"