/django-publications

A Django app for managing scientific publications.

Primary LanguagePythonMIT LicenseMIT

django-publications

A Django app for managing scientific publications.

Screenshots

frontend backend

Features

  • 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

Requirements

  • Python >= 2.7.0
  • Django >= 1.5.0
  • Pillow >= 2.4.0

Installation

  1. Run pip install django-publications.

  2. Add 'publications' to INSTALLED_APPS in your project's settings.py.

  3. Add the following to your project's urls.py:

    url(r'^publications/', include('publications.urls')),

  4. Run ./manage.py syncdb.