Metadata-Version: 1.1
Name: django-livewatch
Version: 0.2.0
Summary: django-livewatch integrates livewatch.de for django projects
Home-page: https://github.com/moccu/django-livewatch/
Author: Moccu GmbH & Co. KG
Author-email: info@moccu.com
License: BSD
Description: django-livewatch
        ================
        
        .. image:: https://badge.fury.io/py/django-livewatch.png
            :target: http://badge.fury.io/py/django-livewatch
        
        .. image:: https://travis-ci.org/moccu/django-livewatch.png?branch=master
            :target: https://travis-ci.org/moccu/django-livewatch
        
        .. image:: https://coveralls.io/repos/moccu/django-livewatch/badge.svg?branch=master
          :target: https://coveralls.io/r/moccu/django-livewatch?branch=master
        
        .. image:: https://readthedocs.org/projects/django-livewatch/badge/?version=latest
            :target: http://django-livewatch.readthedocs.org/en/latest/
        
        livewatch.de integration for django projects.
        
        
        Installation
        ============
        
        * Install ``django-livewatch`` (or `download from PyPI <http://pypi.python.org/pypi/django-livewatch>`_):
        
        .. code-block:: python
        
            pip install django-livewatch
        
        * If you use ``livewatch`` with ``celery`` add it to ``INSTALLED_APPS`` in ``settings.py``:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                # other apps
                'livewatch',
            )
        
        * Include ``livewatch.urls`` in your ``urls.py``:
        
        .. code-block:: python
        
            urlpatterns += patterns('',
                (r'^livewatch/', include('livewatch.urls')),
            )
        
        
        Usage
        =====
        
        Before you can use django-livewatch, you have to install and configure it.
        
        To integrate ``django-livewatch`` with `livewatch.de <http://www.livewatch.de/>`_ you can use the following URLs:
        
        * /livewatch/
        
        ... if you're using the celery extension:
        
        * /livewatch/celery/
        
        ... if you're using the rq extension:
        
        * /livewatch/rq/
        
        
        Resources
        =========
        
        * `Documentation <https://django-livewatch.readthedocs.org/>`_
        * `Bug Tracker <https://github.com/moccu/django-livewatch/issues>`_
        * `Code <https://github.com/moccu/django-livewatch/>`_
        
Keywords: livewatch,django
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Framework :: Django
Classifier: Programming Language :: Python
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.4
Classifier: Programming Language :: Python :: Implementation :: CPython
