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 ----------- 1. Get the latest version with ``pip``:: pip install git+git://github.molgen.mpg.de/EditionOpenAccess/django-eoaauthors 2. Add "eoaauthors" to your INSTALLED_APPS setting like this:: INSTALLED_APPS = [ ... 'eoaauthors', ] 3. Migrate in order to create the eoaauthors models:: python manage.py migrate Removal ------- To remove the addon 1. Use ``pip`` to remove the addon:: pip uninstall django-eoaauthors 2. Remove "eoaauthors" from your INSTALLED_APPS setting.