forked from d-flood/criticus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
94 lines (83 loc) · 1.96 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[tool.hatch]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"lxml>=4.8.0",
"PySimpleGUI==4.57.0",
"natsort>=8.1.0",
"Markdown==3.5.1",
"markdown-del-ins>=1.0.0",
"python-docx>=0.8.11",
]
description = "A suite of tools for transcribing, collating and creating an apparatus criticus."
dynamic = ["version"]
keywords = ["TEI", "transcription", "collation", "critical", "apparatus"]
license = "MIT"
name = "criticus"
readme = "pypi_readme.md"
[project.urls]
documentation = "https://github.com/d-flood/criticus#readme"
issues = "https://github.com/d-flood/criticus/issues"
source = "https://github.com/d-flood/criticus"
[tool.hatch.version]
path = "criticus/__about__.py"
[tool.hatch.envs.default]
python = "3.11"
dependencies = [
"coverage[toml]>=6.5",
"pytest",
"rich",
]
[tool.hatch.envs.default.scripts]
cov = [
"test-cov",
"cov-report",
]
cov-report = [
"- coverage combine",
"coverage report",
]
test = "pytest {args:tests}"
test-cov = "coverage run -m pytest {args:tests}"
[[tool.hatch.envs.all.matrix]]
python = ["3.11"]
[tool.hatch.envs.lint]
dependencies = []
detached = true
[tool.hatch.build.targets.sdist]
include = [
"criticus/py/export_to_docx/template.docx"
]
exclude = [
"/.github",
"/docs",
"/tests",
]
[tool.hatch.build.targets.wheel]
packages = ["criticus"]
[tool.coverage.run]
branch = true
omit = [
"criticus/__about__.py",
]
parallel = true
source_pkgs = ["criticus"]
[tool.coverage.paths]
apiiif = ["criticus", "*/criticus"]
tests = ["tests", "*/tests"]
[tool.coverage.report]
exclude_lines = [
"no cov",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]