Metadata-Version: 2.0
Name: django-publications-bootstrap
Version: 2.2.2
Summary: A Django app for managing scientific publications with a Bootstrap-powered UI.
Home-page: https://github.com/mbourqui/django-publications-bootstrap/
Author: Marc Bourqui
Author-email: pypi.kemar@bourqui.org
License: MIT
Download-URL: https://github.com/mbourqui/django-publications-bootstrap/releases/tag/v2.2.2
Keywords: django scientific publications citations references bibliography
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Dist: Django (>=1.9.13)
Requires-Dist: Pillow (>=2.4.0)
Requires-Dist: django-countries (>=4.0)
Requires-Dist: django-echoices (==2.2.5)
Requires-Dist: django-ordered-model (>=1.4.1)
Requires-Dist: six (>=1.10.0)

|Python| |Django| |License| |PyPI| |Build Status| |Coverage Status|

Bootstrap-powered scientific publications for Django
====================================================

A Django app for managing scientific publications, providing a
Bootstrap-powered UI.

Screenshots
-----------

|frontend| |backend|

Features
--------

-  automatically creates lists for individual authors and tags
-  BibTex import/export
-  RIS export (EndNote, Reference Manager)
-  unAPI support (Zotero)
-  customizable publication categories/BibTex entry types
-  PDF upload
-  RSS feeds
-  support for images
-  embeddable references
-  in-text citations, inspired by LaTeX
-  automatic bibliography, inspired by LaTeX

Requirements
------------

-  Python == 2.7 or >= 3.4
-  Django >= 1.9.13
-  Pillow >= 2.4.0
-  django-countries >= 4.0
-  django-ordered-model >= 1.4.1
-  six >= 1.10.0
-  Bootstrap v4.0.0-beta
-  django-echoices >= 2.2.5

Installation
------------

1. Run ``pip install django-publications-bootstrap``.

2. Add ``publications-bootstrap`` to the ``INSTALLED_APPS`` in your
   project's settings (usually ``settings.py``).

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

   ::

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

4. Run ``./manage.py migrate publications_bootstrap``.

5. In your project's base template, make sure the following blocks are
   available in the ``<head>`` tag:

   -  ``head``, to provide xml content
   -  ``css``, to provide CSS specific to this application

   The content itself will be inserted in the ``content`` block.

Credits
-------

This is a fork of
`django-publications <https://github.com/lucastheis/django-publications>`__
from `lucastheis <https://github.com/lucastheis>`__.

.. |Python| image:: https://img.shields.io/badge/Python-3.4,3.5,3.6-blue.svg?style=flat-square
   :target: /
.. |Django| image:: https://img.shields.io/badge/Django-1.9,1.10,1.11-blue.svg?style=flat-square
   :target: /
.. |License| image:: https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square
   :target: /LICENSE
.. |PyPI| image:: https://img.shields.io/pypi/v/django_publications_bootstrap.svg?style=flat-square
   :target: https://pypi.python.org/pypi/django-publications-bootstrap
.. |Build Status| image:: https://travis-ci.org/mbourqui/django-publications-bootstrap.svg?branch=master
   :target: https://travis-ci.org/mbourqui/django-publications-bootstrap
.. |Coverage Status| image:: https://coveralls.io/repos/github/mbourqui/django-publications-bootstrap/badge.svg?branch=master
   :target: https://coveralls.io/github/mbourqui/django-publications-bootstrap?branch=master
.. |frontend| image:: https://raw.githubusercontent.com/mbourqui/django-publications-bootstrap/media/frontend_small.png
   :target: https://raw.githubusercontent.com/mbourqui/django-publications-bootstrap/media/frontend.png
.. |backend| image:: https://raw.githubusercontent.com/lucastheis/django-publications/media/backend_small.png
   :target: https://raw.githubusercontent.com/lucastheis/django-publications/media/backend.png


