{
"info": {
"author": "Cees van Wieringen",
"author_email": "ceesvw@gmail.com",
"bugtrack_url": null,
"classifiers": [],
"description": "# about-py\nDjango about plugin\n\nMakes a webpage available with information about the projects last version control system commits and\n the python interpreter and used python libraries.\n \n# How to use\n 1. `pip install about-py`\n 2. add about-py to your Django INSTALLED_APPS:
\n
INSTALLED_APPS = [\n ...,\n about-py,\n ...,\n ]\n 3. Create an url entry with the `AboutView`. e.g.\n url(r'^about/', AboutView.as_view()),\n