Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data_collections_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from __future__ import annotations

__version__ = "0.1.0"
__author__ = "Jacob Wilkins, Elliot Kasoar, Jas Kalaya, Alin Elena"
__author__ = "Jacob Wilkins, Elliot Kasoar, Jas Kalayan, Alin Elena"
9 changes: 6 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,16 @@
"sphinx.ext.mathjax",
"sphinx.ext.viewcode",
"sphinxcontrib.contentui",
"myst_parser",
"myst_nb",
]

nb_execution_mode = "off"

source_suffix = {
".rst": "restructuredtext",
".txt": "markdown",
".md": "markdown",
".txt": "myst-nb",
".md": "myst-nb",
".ipynb": "myst-nb",
}

apidoc_modules = [
Expand Down
10 changes: 10 additions & 0 deletions docs/source/deposition_tutorial/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Tutorials
=========

This contains a list of tutorials on using ``data_collections_api``.

.. toctree::
:maxdepth: 2
:caption: Contents:

tutorial
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ Project to allow simplified editing and construction of Invenio data for the PSD

cli
schema
deposition_tutorial/index
schemas/index
API Documentation <api/modules>
4 changes: 1 addition & 3 deletions docs/source/scripts/schema_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@
:maxdepth: 1
:caption: Schemas:

{schemas}

"""
{schemas}"""


def get_arg_parser() -> argparse.ArgumentParser:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ docs = [
"sphinxcontrib-contentui<1.0.0,>=0.2.5",
"furo==2025.9.25",
"numpydoc>=1.9.0",
"myst-parser",
"jsonschema-markdown",
"myst-nb",
]
lint = ["pre-commit<5.0.0,>=4.2.0", "ruff==0.13.3", "numpydoc>=0.19.0"]
test = ["pytest==8.3.4", "pytest-cov==5.0.0"]
Expand Down