-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (92 loc) · 2.22 KB
/
pyproject.toml
File metadata and controls
104 lines (92 loc) · 2.22 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
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
[build-system]
requires = ["setuptools>=77.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "HathiValidate"
version = "0.3.11.dev0"
dependencies = [
"lxml",
"PyYAML",
]
requires-python = ">=3.10"
readme = "README.rst"
license = "NCSA"
license-files = ["LICENSE"]
authors = [
{name = "University Library at The University of Illinois at Urbana Champaign: Preservation Services", email = "prescons@library.illinois.edu"},
]
maintainers = [
{name = "Henry Borchers", email = "hborcher@illinois.edu"}
]
description = "Replacement for older scripts for validating Hathi Trust Packages"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.10",
]
[project.urls]
Documentation = "https://www.library.illinois.edu/dccdocs/hathi_validate"
Download = "https://github.com/UIUCLibrary/HathiValidate"
[dependency-groups]
audit-dependencies = ["uv-secure"]
publish = ["twine"]
tox = ["tox"]
tox-uv = [
{include-group = "tox"},
"tox-uv-bare"
]
docs = ["sphinx"]
test =["pytest", "behave"]
type-checking = ["mypy", "types-PyYAML"]
code-style = ["pydocstyle", "flake8"]
lint = [
{include-group = "code-style"},
"pylint"
]
security = ["bandit"]
dev = [
"coverage",
"lxml",
"paramiko",
"pep517",
"PyYAML",
"setuptools>=30.3.0",
{include-group = "audit-dependencies"},
{include-group = "code-style"},
{include-group = "docs"},
{include-group = "lint"},
{include-group = "test"},
{include-group = "tox"},
{include-group = "type-checking"},
{include-group = "publish"},
"types-PyYAML"
]
ci = ["pysonar", {include-group = "dev"}]
[tool.setuptools]
packages = [
"hathi_validate",
"hathi_validate.xsd",
]
zip-safe = false
package-dir = {"" = "src"}
[tool.setuptools.package-data]
hathi_validate = ["xsd/*.xsd", "py.typed", "catalog.xml"]
[project.scripts]
hathivalidate = "hathi_validate.cli:main"
[tool.coverage.run]
branch = true
source = ["src"]
relative_files = true
[tool.coverage.paths]
source = ["src"]
[tool.coverage.report]
exclude_lines =[
"if TYPE_CHECKING:",
"except ImportError"
]
[tool.pytest.ini_options]
addopts = "--verbose"
testpaths = [
"tests"
]
[tool.mypy]
ignore_missing_imports = true