This is an export plugin for RDMO, creating a CITATION.cff file for a software described in an RDMO software management plan (SMP) with the MPDL catalog "Software Management Plan"
The RDMO attributes are mapped to the cff standard version 1.2.0.
Install the plugin in your RDMO virtual environment using pip (directly from GitHub):
pip install git+https://github.com/rdmorganiser/rdmo-plugins-cff.git
Add the rdmo_plugins_cff
app to your INSTALLED_APPS
in `config/settings/local.py``:
from . import INSTALLED_APPS
INSTALLED_APPS = ['rdmo_plugins_cff'] + INSTALLED_APPS
Add the export plugins to the PROJECT_EXPORTS in config/settings/local.py:
from django.utils.translation import gettext_lazy as _
from . import PROJECT_EXPORTS
PROJECT_EXPORTS += [
('cff-file', _('as CITATION.cff file'), 'rdmo_plugins_cff.exports.cff.cff.CffExport')
]
Please visit the RDMO documentation for detailed information.