A Django app for managing scientific publications.
- automatically creates lists for individual authors and keywords
- BibTex import/export
- RIS export (EndNote, Reference Manager)
- unAPI support (Zotero)
- customizable publication categories/BibTex entry types
- PDF upload
- RSS feeds
- support for images
- Python >= 3.5.0
- Django >= 2.1.0
- Pillow >= 2.3.0
-
Run
pip install django-publications
. -
Add
'publications'
toINSTALLED_APPS
in your project'ssettings.py
. -
Add the following to your project's
urls.py
:url(r'^publications/', include('publications.urls')),
-
Run the following:
./manage.py makemigrations publications ./manage.py migrate