Metadata-Version: 1.1
Name: django-howl
Version: 0.1.2
Summary: Django app to provide notifications in several ways
Home-page: http://github.com/deluge/django-howl/
Author: Benjamin Banduhn, Stephan Jaekel
Author-email: deluge@banduhn.com
License: BSD
Description: django-howl
        ===============
        
        .. image:: https://badge.fury.io/py/django-howl.png
            :target: http://badge.fury.io/py/django-howl
        
        .. image:: https://travis-ci.org/deluge/django-howl.svg?branch=master
            :target: https://travis-ci.org/deluge/django-howl
        
        .. image:: https://coveralls.io/repos/deluge/django-howl/badge.svg?branch=master
          :target: https://coveralls.io/github/deluge/django-howl?branch=master
        
        .. image:: https://readthedocs.org/projects/django-howl/badge/?version=latest
          :target: http://django-howl.readthedocs.org/en/latest/?badge=latest
          :alt: Documentation Status
        
        
        What is django-howl
        -----------------------
        
        `django-howl` is a Django app to provide notifications in several ways.
        
        You can connect to the signals and do everything you want
        like sending notifications over different APIs.
        
        
        Installation
        ============
        
        * Install ``django-howl`` (or `download from PyPI <http://pypi.python.org/pypi/django-howl>`_):
        
        .. code-block:: python
        
            pip install django-howl
        
        * After Installation add it to ``INSTALLED_APPS`` in ``settings.py``:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                # other apps
                'howl',
            )
        
        
        Usage
        =====
        
        Now you can login to the admin and configure some observers and build some nice apps
        with it.
        
        
        Resources
        =========
        
        * `Documentation <https://django-howl.readthedocs.org/>`_
        * `Bug Tracker <https://github.com/deluge/django-howl/issues>`_
        * `Code <https://github.com/deluge/django-howl/>`_
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
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 :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Framework :: Django
