Metadata-Version: 2.1
Name: podiant-cron
Version: 3.0.0
Summary: A simpler, more flexible form of Django signals
Home-page: https://git.steadman.io/podiant/cron
Author: Mark Steadman
Author-email: mark@podiant.co
License: MIT
Description: Podiant cron
        ============
        
        ![Build](https://git.steadman.io/podiant/cron/badges/master/build.svg)
        ![Coverage](https://git.steadman.io/podiant/cron/badges/master/coverage.svg)
        
        A tiny wrapper around APScheduler and Django RQ, for defining cron jobs
        
        ## Quickstart
        
        Install cron:
        
        ```sh
        pip install podiant-cron
        ```
        
        Add it to your `INSTALLED_APPS`:
        ```python
        INSTALLED_APPS = (
            ...
            'cron',
            ...
        )
        ```
        
        ## Running tests
        
        Does the code actually work?
        
        ```
        coverage run --source cron runtests.py
        ```
        
        ## Credits
        
        Tools used in rendering this package:
        
        - [Cookiecutter](https://github.com/audreyr/cookiecutter)
        - [`cookiecutter-djangopackage`](https://github.com/pydanny/cookiecutter-djangopackage)
        
Keywords: podiant-cron
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
