Metadata-Version: 1.1
Name: django-pgcli
Version: 0.0.1
Summary: Database runtime for Django that replaces psql with pgcli.
Home-page: https://github.com/ashchristopher/django-pgcli
Author: Ash Christopher
Author-email: ash.christopher@gmail.com
License: BSD
Description: ===============================
        django-pgcli
        ===============================
        
        .. image:: https://img.shields.io/travis/ashchristopher/django-pgcli.svg
                :target: https://travis-ci.org/ashchristopher/django-pgcli
        
        .. image:: https://img.shields.io/pypi/v/django-pgcli.svg
                :target: https://pypi.python.org/pypi/django-pgcli
        
        
        Alternate database runtime for Django that replaces psql with pgcli when
        calling the Django `dbshell` management command.
        
        * Free software: BSD license
        
        Installation
        ------------
        
        Installation is as simple as::
        
            $ pip install django-pgcli
        
        Add ``django_pgsql`` to your ``INSTALLED_APPS`` setting.
        
            INSTALLED_APPS = [
                ...,
                'django_pgsql',
            ]
        
        Usage
        -----
        Call the `dbshell` command.
        
            ./manage.py dbshell
        
        
        
        
        History
        -------
        
        0.0.1 (2015-04-25)
        ---------------------
        
        * Initial release.
        
Keywords: django pgcli postgres database
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
