-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
61 lines (52 loc) · 1.43 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
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "alto2txt"
version = "0.3.4"
description = "extract plain text and minimal metadata from ALTO xml files"
authors = [
"Mike Jackson <[email protected]>",
"David Beavan <[email protected]>",
"Andy Smith <[email protected]",
"Daniel van Strien <[email protected]>",
"Lydia France <[email protected]>",
"Yann Ryan",
"Federico Nanni <[email protected]>",
]
maintainers = ["Griffith Rees <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/Living-with-machines/alto2txt/"
keywords = ["XML", "text", "processing", "publications", "articles"]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Text Processing",
]
documentation = "https://living-with-machines.github.io/alto2txt/"
[tool.poetry.dependencies]
python = ">=3.7.0"
lxml = "^4.7.1"
[tool.poetry.dev-dependencies]
black = "^23.3"
flake8 = "^5.0.4"
pytest = "^7.3.1"
icecream = "^2.1.2"
pre-commit = "^2.21.0"
pytest-cov = "^4.1.0"
coverage = {extras = ["toml"], version = "^7.2.6"}
[tool.poetry.group.dev.dependencies]
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools", "wheel"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
alto2txt = 'alto2txt.extract_publications_text:main'
[tool.pycln]
all = true
[tool.coverage.run]
relative_files = true
[tool.pytest.ini_options]
addopts = """
--cov=src/alto2txt
--cov-report=term:skip-covered
"""
pythonpath = [
"src"
]