-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (58 loc) · 1.59 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
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "uiucprescon.getmarc2"
version = "0.1.4.dev0"
dependencies = [
"lxml<5.1.0; sys_platform == 'darwin' and python_version == '3.8' and platform_machine == 'arm64'",
"lxml; sys_platform != 'darwin' or python_version != '3.8' or platform_machine != 'arm64'",
'importlib-metadata;python_version<"3.8"',
'importlib-resources;python_version<"3.9"',
"requests",
]
readme = "README.md"
license = {text = "University of Illinois/NCSA Open Source 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 = "Uses the Get Bib Record Web Service to get marc data from the Alma catalog"
[tool.setuptools]
packages = [
"uiucprescon.getmarc2",
]
zip-safe = true
[tool.setuptools.package-data]
"uiucprescon.getmarc2" = [
"MARC21slim.xsd",
"955_template.xml",
"py.typed"
]
[project.scripts]
getmarc = "uiucprescon.getmarc2.__main__:main"
[tool.coverage.run]
branch = true
source = ["uiucprescon"]
relative_files = true
[tool.coverage.paths]
source = ["uiucprescon"]
[tool.coverage.report]
exclude_lines =[
"if TYPE_CHECKING:"
]
[[tool.mypy.overrides]]
module = [
"lxml",
"importlib_metadata"
]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "--verbose -s --doctest-modules"
testpaths = [
"tests",
"uiucprescon"
]
junit_family = "xunit2"