{ "info": { "author": "TailorDev", "author_email": "hello+github@tailordev.fr", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Django", "Framework :: Django :: 1.10", "Framework :: Django :: 1.11", "Framework :: Django :: 1.8", "Framework :: Django :: 1.9", "Framework :: Django :: 2.0", "Framework :: Django :: 2.1", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": "# Django TailorDev Biblio\n\nBibliography management with Django.\n\n[\n](https://travis-ci.org/TailorDev/django-tailordev-biblio/)\n[](https://coveralls.io/github/TailorDev/django-tailordev-biblio?branch=master)\n[](https://pypi.python.org/pypi/django-tailordev-biblio)\n\n## Compatibility\n\nSince the `1.0.0` release, we have added full support for recent python and\nDjango releases:\n\n| | Django 1.8 | Django 1.9 | Django 1.10 | Django 1.11 | Django 2.0 | Django 2.1 |\n| ---------- | ------------------ | ------------------ | ------------------ | ------------------ | ------------------ | ------------------ |\n| Python 2.7 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | |\n| Python 3.4 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | |\n| Python 3.5 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |\n| Python 3.6 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |\n\nPlease note that for older Python and/or Django versions, you can still use the `0.3` release.\n\n## Sandbox\n\nClick on the screenshot below to browse the sandbox deployed on Heroku:\n\n[\n\n](https://tailordev-biblio.herokuapp.com)\n\n_Nota bene:_ to test [references\nimportation](https://tailordev-biblio.herokuapp.com/import/) from PMIDs or DOIs,\nyou will need to login with these credentials:\n\n```\nlogin: rosalind\npassword: idiscovereddnastructurefirst\n```\n\n## Installation\n\n### Install `td_biblio`\n\nThe easiest way to go is to use pip:\n\n```bash\n$ pip install -U django-tailordev-biblio\n```\n\n### Configure `td_biblio`\n\nAdd `td_biblio` to your `INSTALLED_APPS` in django settings:\n\n```python\n# foo_project/settings.py\n\nINSTALLED_APPS = (\n # other apps\u2026\n 'td_biblio',\n)\n```\n\nAdd `td_biblio` urls your project url patterns:\n\n```python\n# foo_project/urls.py\n\nurlpatterns = [\n # other urls\u2026\n url(r'^bibliography/', include('td_biblio.urls', namespace='td_biblio')),\n]\n```\n\nAnd finally migrate your database from your project root path:\n\n```bash\n$ python manage.py migrate td_biblio\n```\n\n### Add a base template\n\nIn order to use `td_biblio` templates, you will need to create a base template\nto inherit from. This base template should be visible as `_layouts/base.html`\nand contains at least the following blocks:\n\n```html\n\n
\n