Metadata-Version: 1.1
Name: django-morechecks
Version: 0.1.0
Summary: additional checks for Django > 1.7
Home-page: UNKNOWN
Author: Keryn Knight
Author-email: python-package@kerynknight.com
License: BSD License
Description-Content-Type: UNKNOWN
Description: =================
        django-morechecks
        =================
        
        Because Django 1.7 has a new checks framework, but only for things that
        *would prevent startup or cause known problems.*
        
        This is me implementing others, as I need them.
        
        Checks
        ------
        
        * ``morechecks.checks.templates_do_not_do_queries`` - Ensures that any custom
          context processors do not trigger a query just by being used. They should
          instead be made lazy, such that the database is hit when the context variable
          is *used*.
        
        That's it, so far.
        
        Usage
        -----
        
        Add ``morechecks`` to your ``INSTALLED_APPS`` and run::
        
            python manage.py check morechecks
        
Keywords: django checks
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Framework :: Django
Classifier: Natural Language :: English
Classifier: Environment :: Web Environment
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
