Metadata-Version: 1.1
Name: django-celery-model
Version: 0.0.1dev
Summary: django-celery-model is an extension to Celery and django-celery that supports tasks aligned to Django models.
Home-page: https://github.com/mback2k/django-celery-model
Author: Marc Hoersken
Author-email: info@marc-hoersken.de
License: MIT
Description: [Django-Celery-Model](https://github.com/mback2k/django-celery-model) is an
        extension to [Django-Celery](https://github.com/celery/django-celery)
        which adds supports for tracking tasks aligned to Django model instances.
        
        Installation
        ------------
        You can install the latest version from GitHub manually:
        
            git clone https://github.com/mback2k/django-celery-model.git
            cd django-celery-model
            python setup.py install
        
        or via pip:
        
            pip install https://github.com/mback2k/django-celery-model/zipball/master
        
        Configuration
        -------------
        Add the package to your `INSTALLED_APPS`:
        
            INSTALLED_APPS += (
                'djcelery',
                'djcelery_model',
            )
        
        License
        -------
        * Released under MIT License
        * Copyright (c) 2014 Marc Hoersken <info@marc-hoersken.de>
        
Platform: UNKNOWN
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
