Installation ============ EOA Forthcoming is a Django app for announcing forthcoming publications on the EOA Publication Platform. It provides a plugin for the CMS to show the cover and a blurb of publications that are to be published soon. Quick start ----------- 1. Get the latest version with ``pip``:: pip install git+git://github.molgen.mpg.de/EditionOpenAccess/django-eoaforthcoming 2. Add "eoaforthcoming" to your INSTALLED_APPS setting like this:: INSTALLED_APPS = [ ... 'eoaforthcoming', ] 3. Migrate in order to create the eoaforthcoming models:: python manage.py migrate Removal ------- To remove the addon 1. Use ``pip`` to remove the addon:: pip uninstall django-eoaforthcoming 2. Remove "eoaforthcoming" from your INSTALLED_APPS setting.