Metadata-Version: 1.0
Name: django-production-ready
Version: 0.0.1a0
Summary: A Django app that runs simple tests to check if your app is production ready.
Home-page: http://github.com/agiliq/django-production-ready
Author: Agiliq Solutions
Author-email: hello@agiliq.com
License: BSD
Description: ------------------------
        Django Production Ready
        ------------------------
        
        A simple app with a single management command that checks if your project is 
        production ready.
        
        Install
        --------
        
        * If you use pip_::
        
            $ pip install django-production-ready
        
        or
        
        * Checkout the source code from github_ and::
        
            $ python setup.py install
        
        * Add the app to your `INSTALLED_APPS` in the `settings.py`.
        
            INSTALLED_APPS = (
            ...
            prodready,
            ...
            )
        
        Usage
        ------
        
        Run the management command to run the tests:
        
            $ python manage.py is_it_ready
        
        
        .. _pip: http://www.pip-installer.org/en/latest/
        .. _github: https://github.com/agiliq/django-production-ready
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
