Metadata-Version: 1.1
Name: django-timetable
Version: 0.1.1
Summary: An Django app that provides generic calendar functions
Home-page: https://github.com/g3rd/django-timetable
Author: Chad Shryock
Author-email: chad@g3rdmedia.com
License: MIT License
Description: django-timetable
        ========================
        
        
        Required packages
        ------------------
        * django-taggit
            https://github.com/alex/django-taggit
        * django-colorful
            https://github.com/charettes/django-colorful
        
        
        Installation
        ------------
        
        1. Install django-timetable
        
                $ pip install django-timetable
        
        2. Install django-taggit:
        
                $ pip install django-taggit
        
        3. Install django-colorful:
        
                $ pip install django-colorful
        
        4. In settings.py file add the following to DJANGO_APPS:
        
                DJANGO_APPS = (
                    ...
                    'taggit',
                    'timetable',
                )
        
        
        Change Log
        ----------
        
        0.1.1 - Fixed packaging issue for PyPi
        
        0.1.0 - Base working version
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: Django (>=1.5)
