Metadata-Version: 2.0
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
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
Requires-Dist: django (>=1.6)
Provides-Extra: celery
Requires-Dist: celery; extra == 'celery'
Provides-Extra: rq
Requires-Dist: django-rq; extra == 'rq'
Provides-Extra: tests
Requires-Dist: py (==1.4.26); extra == 'tests'
Requires-Dist: pyflakes (==0.8.1); extra == 'tests'
Requires-Dist: pytest (==2.6.4); extra == 'tests'
Requires-Dist: pytest-cache (==1.0); extra == 'tests'
Requires-Dist: pytest-cov (==1.8.1); extra == 'tests'
Requires-Dist: pytest-flakes (==0.2); extra == 'tests'
Requires-Dist: pytest-pep8 (==1.0.6); extra == 'tests'
Requires-Dist: pytest-django (==2.8.0); extra == 'tests'
Requires-Dist: cov-core (==1.15.0); extra == 'tests'
Requires-Dist: coverage (==3.7.1); extra == 'tests'
Requires-Dist: execnet (==1.3.0); extra == 'tests'
Requires-Dist: pep8 (==1.6.2); extra == 'tests'
Requires-Dist: factory-boy (==2.4.1); extra == 'tests'
Requires-Dist: mock (==1.0.1); extra == 'tests'
Requires-Dist: celery (==3.1.16); extra == 'tests'
Requires-Dist: django-rq (==0.7.0); extra == 'tests'
Requires-Dist: django-redis-cache (==0.13.0); extra == 'tests'
Requires-Dist: hiredis (==0.1.6); extra == 'tests'

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/>`_


