{ "info": { "author": "Imaginary Landscape", "author_email": "dbertrand@imagescape.com", "bugtrack_url": null, "classifiers": [], "description": "=================\nDjango Newscenter\n=================\n\nA Django application for creating news releases which can be associated with unique newsroom objects.\n\nA Django CMS apphook is included as well as a templatetag for rendering news release headlines in non-application templates.\n\nDjango 1.7 and up\n\nInstallation\n============\n\nAdd newscenter to your python path:\n\n $ pip install newscenter\n\nAdd the following to the INSTALLED_APPS of your project's settings.py:\n\n 'newscenter',\n\nIn your urls.py, add:\n url(r'^newscenter/', include('newscenter.urls')),\n\nRun:\n\n ``manage.py migrate``\n\nCollect static media:\n\n ``manage.py collectstatic``\n\n\nDependencies\n============\n\nThe following will be installed automatically if you use pip to install newscenter:\n\n Pillow (http://python-pillow.github.io/)\n\n easy-thumbnails (https://github.com/SmileyChris/easy-thumbnails)\n\n feedparser (http://pythonhosted.org/feedparser/)\n\n django-el-pagination (https://django-el-pagination.readthedocs.io/en/latest/start.html)\n\nFor easy-thumbnails, you'll also need to add it to INSTALLED_APPS and run migrate:\n 'easy_thumbnails',\n\nFor django-el-pagination, you'll also need to add it to INSTALLED_APPS:\n 'el_pagination',\n\nYou will also need to update your `context_processors` with:\n 'django.template.context_processors.request',\n\nNB: don't forget to delete any 'endless_pagination' from INSTALLED_APPS in the settings.py file.\n\nTemplate Tag\n============\n\nThe template tag can be used like this::\n\n {% load newscenter_tags %}\n {% get_news \"newsroom-name\" %}\n