Metadata-Version: 1.1
Name: dj-database-url
Version: 0.2.0
Summary: Use Database URLs in your Django Application.
Home-page: https://github.com/kennethreitz/dj-database-url
Author: Kenneth Reitz
Author-email: me@kennethreitz.com
License: BSD
Description: 
        dj-database-url
        ~~~~~~~~~~~~~~~
        
        This simple Django utility allows you to utilize the
        `12factor <http://www.12factor.net/backing-services>`_ inspired
        ``DATABASE_URL`` environment variable to configure your Django application.
        
        
        Usage
        -----
        
        Configure your database in ``settings.py``::
        
            DATABASES['default'] = dj_database_url.config()
        
        Nice and simple.
        
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
