diff --git a/pyproject.toml b/pyproject.toml index 42a4747b..df6369d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -90,6 +90,7 @@ codemeta = "hermes.commands.harvest.codemeta:CodeMetaHarvestPlugin" file = "hermes.commands.deposit.file:FileDepositPlugin" invenio = "hermes.commands.deposit.invenio:InvenioDepositPlugin" invenio_rdm = "hermes.commands.deposit.invenio_rdm:IvenioRDMDepositPlugin" +rodare = "hermes.commands.deposit.rodare:RodareDepositPlugin" [tool.poetry.plugins."hermes.postprocess"] config_invenio_record_id = "hermes.commands.postprocess.invenio:config_record_id" diff --git a/src/hermes/commands/deposit/rodare.py b/src/hermes/commands/deposit/rodare.py new file mode 100644 index 00000000..f3ff0b2a --- /dev/null +++ b/src/hermes/commands/deposit/rodare.py @@ -0,0 +1,10 @@ +# SPDX-FileCopyrightText: 2024 Helmholtz-Zentrum Dresden-Rossendorf (HZDR) +# +# SPDX-License-Identifier: Apache-2.0 + +# SPDX-FileContributor: David Pape + +from hermes.commands.deposit.invenio import InvenioDepositPlugin + +class RodareDepositPlugin(InvenioDepositPlugin): + platform_name = "rodare"