-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (64 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (64 loc) · 1.88 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
# SPDX-FileCopyrightText: 2015-2018 CERN.
# SPDX-FileCopyrightText: 2022-2025 Graz University of Technology.
# SPDX-FileCopyrightText: 2022 Graz University of Technology.
# SPDX-FileCopyrightText: 2022 RERO.
# SPDX-FileCopyrightText: 2026 TU Wien.
# SPDX-License-Identifier: MIT
[project]
name = "invenio-jsonschemas"
description = "Invenio module for building and serving JSONSchemas."
readme = "README.rst"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "CERN", email = "info@inveniosoftware.org" },
]
keywords = [
"invenio",
"json",
"jsonschema",
"schema",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
]
dependencies = [
"invenio-base>=2.3.0,<3.0.0",
"jsonref>=0.1",
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/inveniosoftware/invenio-jsonschemas"
[project.entry-points."invenio_base.api_apps"]
invenio_jsonschemas = "invenio_jsonschemas:InvenioJSONSchemasAPI"
[project.entry-points."invenio_base.apps"]
invenio_jsonschemas = "invenio_jsonschemas:InvenioJSONSchemasUI"
[project.entry-points."invenio_records.jsonresolver"]
invenio_jsonschemas = "invenio_jsonschemas.jsonresolver"
[project.optional-dependencies]
docs = []
tests = [
"jsonresolver[jsonschema]>=0.2.1",
"mock>=1.3.0",
"pytest-black>=0.6.0",
"pytest-invenio>=3.0.0,<4.0.0",
"sphinx>=4.5",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "invenio_jsonschemas/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/invenio_jsonschemas",
]
[tool.isort]
profile = "black"
[tool.pydocstyle]
add_ignore = "D401"
[tool.pytest.ini_options]
addopts = '--black --isort --pydocstyle --doctest-glob="*.rst" --doctest-modules --cov=invenio_jsonschemas --cov-report=term-missing'
filterwarnings = ["ignore::pytest.PytestDeprecationWarning"]
testpaths = "tests invenio_jsonschemas"
live_server_scope = "module"