Installation¶
EOA Authors is a Django app for displaying author information in the EOA Publication Platform. It is not a standalone application, but is an addon to eoapublications.
Quick start¶
Get the latest version with
pip
:pip install git+git://github.molgen.mpg.de/EditionOpenAccess/django-eoaauthors
Add “eoaauthors” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'eoaauthors', ]
Migrate in order to create the eoaauthors models:
python manage.py migrate
Removal¶
To remove the addon
Use
pip
to remove the addon:pip uninstall django-eoaauthors
Remove “eoaauthors” from your INSTALLED_APPS setting.