Metadata-Version: 1.1
Name: django-pgcli
Version: 0.0.3
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-Content-Type: UNKNOWN
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_pgcli`` to your ``INSTALLED_APPS`` setting.
        
            INSTALLED_APPS = [
                ...,
                'django_pgcli',
            ]
        
        Usage
        -----
        Call the `dbshell` command.
        
            ./manage.py dbshell
        
        
        
        
        History
        -------
        
        0.0.2 (2015-04-26)
        ---------------------
        * Fixed typo in README.rst
        
        0.0.1 (2015-04-25)
        ---------------------
        
        * Initial release.
        
Keywords: django pgcli postgres database
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
