Metadata-Version: 1.0
Name: django-ptree
Version: 0.1.3
Summary: pTree is a Django toolset that makes it easy to create and administer social science experiments to online participants.
Home-page: http://www.ptree.org/
Author: Chris Wickens
Author-email: c.wickens+ptree@googlemail.com
License: MIT License
Description: =====
        pTree
        =====
        
        pTree is a Django toolset that makes it easy to create and administer social science experiments to online participants.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add ``ptree`` to your ``INSTALLED_APPS`` setting like this::
        
              INSTALLED_APPS = (
                  ...
                  'ptree',
              )
        
        2. Create another variable in settings.py called ``GAME_LABELS`` and set it to the list of game apps in your project::
        
            GAME_LABELS = ['mygame', ...]
            INSTALLED_APPS += GAME_LABELS
        
        3. Enable the Bootstrap visual design by setting::
        
            CRISPY_TEMPLATE_PACK = 'bootstrap3'
        
Platform: UNKNOWN
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: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
