-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
76 lines (68 loc) · 1.65 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
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "getmarcapi"
version = "0.0.4.dev0"
dependencies = [
'flask',
'uiucprescon.getmarc2>=0.1.3',
'typing-extensions;python_version<"3.8"'
]
requires-python = ">= 3.10"
readme = "README.rst"
license = "NCSA"
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 = "Provide MARC XML data"
[dependency-groups]
deploy = ['gunicorn', 'python-dotenv']
test = ['pytest']
tox = ["tox"]
publish = ["twine"]
docs = ["sphinx", "sphinxcontrib.spelling"]
dev = [
"bandit",
"coverage",
"flake8",
"lxml-stubs",
"mypy",
"paramiko",
"pydocstyle",
"pylint",
{include-group = "docs"},
{include-group = "publish"},
{include-group = "test"},
{include-group = "tox"},
]
ci = ["pysonar", {include-group = "dev"}]
[project.urls]
Download = "https://github.com/UIUCLibrary/"
[tool.setuptools]
packages = [
"getmarcapi",
]
include-package-data = true
zip-safe = true
[[tool.mypy.overrides]]
module = 'uiucprescon'
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "--verbose -s"
testpaths = [
"tests"
]
junit_family="xunit2"
[[tool.uv.index]]
url = "https://pypi.org/simple"
default = true
[[tool.uv.index]]
name = "uiuc_prescon_python"
url = "https://nexus.library.illinois.edu/repository/uiuc_prescon_python/simple"
explicit = true
[tool.uv.sources]
"uiucprescon-getmarc2" = {index="uiuc_prescon_python"}