Metadata-Version: 1.1
Name: woodstock
Version: 0.1.1
Summary: django based event toolkit
Home-page: http://github.com/allink/woodstock/
Author: Marc Egli
Author-email: egli@allink.ch
License: BSD License
Description: =========
        Woodstock
        =========
        
        Installation
        ------------
        
        **Notice**: This is a first draft of an installation guide. It's not finished
        and complete.
        
        1. Make sure you have a working django project setup.
        
        2. Install woodstock with pip::
        
        pip install woodstock
        
        3. Make sure that the FeinCMS and Pennyblack Apps are added to your installed apps in your `settings.py`::
        
        'woodstock',
        
        4. Install dependencies (over `pip`):
        
        - pennyblack_
        - feincms_
        - icalendar
        
        
        5. Add Woodstock Models to south migration modules in your `settings.py`::
        
        SOUTH_MIGRATION_MODULES = {
        'woodstock': 'project_name.migrations_woodstock',
        }
        
        6. Run `schemamigrations` and `migrate`::
        
        ./manage.py schemamigration --initial woodstock
        ./manage.py migrate
        
        .. _pennyblack: https://github.com/allink/pennyblack/
        .. _feincms: https://raw.github.com/matthiask/feincms/
        
        
Platform: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires: FeinCMS(>=1.3.0)
Requires: Django(>=1.3)
Requires: pennyblack(>=0.2.1)
Requires: icalendar(>=2.1)
