Metadata-Version: 2.1
Name: Django-Site-Utils
Version: 0.3.1
Summary: Django site-wide management commands and utilities.
Home-page: https://github.com/ninemoreminutes/django-site-utils/
Author: Nine More Minutes, Inc.
Author-email: projects@ninemoreminutes.com
License: BSD
Project-URL: Documentation, https://django-site-utils.rtfd.org/
Project-URL: Source, https://github.com/ninemoreminutes/django-site-utils/
Project-URL: Tracker, https://github.com/ninemoreminutes/django-site-utils/issues
Keywords: django,site,management
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Framework :: Django :: 2.2
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: django (>=1.11)
Requires-Dist: six

|Build Status| |PyPI Version| |PyPI License| |Python Versions| |Django Versions| |Read the Docs|

Django-Site-Utils
=================

The Django-Site-Utils library provides a reusable Django application with management commands for site-wide
administrative actions, along with functions for common tasks often needed by any Django site.

Management commands include:
 * ``site_cleanup`` : Cleanup stale data and tables.
 * ``site_config`` : Update the Site name and domain.
 * ``site_error_pages`` : Generate static error pages based on your site's theme.
 * ``site_notify`` : Send notifications to administrators and staff.
 * ``site_update`` : Run groups of management commands at once.

Other functions include:
 * Error views and handlers.
 * Template context processors.

Documentation can be found at `Read The Docs <http://django-site-utils.readthedocs.io/>`_.

It is tested against:
 * Django 1.11 (Python 3.5 and 3.6)
 * Django 2.0 (Python 3.5, 3.6 and 3.7)
 * Django 2.1 (Python 3.5, 3.6 and 3.7)
 * Django 2.2 (Python 3.5, 3.6, 3.7, 3.8 and 3.9)
 * Django 3.0 (Python 3.6, 3.7, 3.8 and 3.9)
 * Django 3.1 (Python 3.6, 3.7, 3.8 and 3.9)
 * Django master/3.2 (Python 3.6, 3.7, 3.8 and 3.9)

.. |Build Status| image:: http://img.shields.io/travis/ninemoreminutes/django-site-utils.svg
   :target: https://travis-ci.org/ninemoreminutes/django-site-utils
.. |PyPI Version| image:: https://img.shields.io/pypi/v/django-site-utils.svg
   :target: https://pypi.python.org/pypi/django-site-utils/
.. |PyPI License| image:: https://img.shields.io/pypi/l/django-site-utils.svg
   :target: https://pypi.python.org/pypi/django-site-utils/
.. |Python Versions| image:: https://img.shields.io/pypi/pyversions/django-site-utils.svg
   :target: https://pypi.python.org/pypi/django-site-utils/
.. |Django Versions| image:: https://img.shields.io/pypi/djversions/django-site-utils.svg
   :target: https://pypi.org/project/django-site-utils/
.. |Read the Docs| image:: https://img.shields.io/readthedocs/django-site-utils.svg
   :target: http://django-site-utils.readthedocs.io/


