Metadata-Version: 1.1
Name: django-tinyschedule
Version: 0.2
Summary: A small package for managing schedules in Django
Home-page: https://github.com/jgeskens/django-tinyschedule
Author: Jef Geskens
Author-email: jef.geskens@gmail.com
License: BSD
Description: =============================
        django-tinyschedule
        =============================
        
        .. image:: https://badge.fury.io/py/django-tinyschedule.png
            :target: https://badge.fury.io/py/django-tinyschedule
        
        .. image:: https://travis-ci.org/jgeskens/django-tinyschedule.png?branch=master
            :target: https://travis-ci.org/jgeskens/django-tinyschedule
        
        .. image:: https://coveralls.io/repos/jgeskens/django-tinyschedule/badge.svg?branch=master 
            :target: https://coveralls.io/r/jgeskens/django-tinyschedule?branch=master
        
        A small package for managing schedules in Django
        
        Documentation
        -------------
        
        The full documentation is at https://django-tinyschedule.readthedocs.org.
        
        Quickstart
        ----------
        
        Install django-tinyschedule::
        
            pip install django-tinyschedule
        
        Then use it in a project::
        
            import tinyschedule
        
        Features
        --------
        
        * Easily define schedules using the Schedule model
        * Make your own Schedule-like models by extending ScheduleBase
        * Tiny and lightweight, easy to grasp
        
        
        
        
        History
        -------
        
        0.1.0 (2015-02-03)
        ++++++++++++++++++
        
        * First release on PyPI.
        
        0.1.1 (2015-02-04)
        ++++++++++++++++++
        
        * Add AbstractSchedule
        
        0.1.2 (2015-02-04)
        ++++++++++++++++++
        
        * Renamed package from ``schedule`` to a less general name ``tinyschedule`` to avoid conflicts.
        
        0.1.3 (2015-02-05)
        ++++++++++++++++++
        
        * Small bugfix: if you subclass AbstractSchedule, you will now get your own class when using ``ScheduleManager.lookup(...)``
        
        0.1.4 (2015-03-10)
        ++++++++++++++++++
        
        * Bugfix in __getitem__
        
        
Keywords: django-tinyschedule
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
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.5
