-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
117 lines (103 loc) · 2.46 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[tool.hatch]
env-type = "virtual"
installer = "uv"
[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 :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"lxml>=4.8.0",
"django>=5.1.4",
"toga==0.4.8",
"uvicorn>=0.34.0",
"whitenoise>=6.8.2",
"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. See also www.apatosaurs.io for a web-based set of tools."
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.metadata.package-data]
criticus = [
"py/export_to_docx/*.docx",
"*.sqlite3",
"staticfiles/**/*"
]
[tool.hatch.envs.default]
installer = "uv"
python = "3.13"
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", "3.12", "3.13"]
[tool.hatch.envs.lint]
dependencies = []
detached = true
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs",
"/tests",
]
[tool.hatch.build.targets.wheel]
packages = ["criticus"]
include = [
"criticus/py/export_to_docx/*.docx",
"criticus/criticus.sqlite3",
"criticus/staticfiles/**/*"
]
[tool.hatch.build]
artifacts = [
"criticus/criticus.sqlite3",
"criticus/staticfiles/**/*"
]
[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:",
]