Metadata-Version: 1.0
Name: django-startappextracontext
Version: 0.1
Summary: A small django app that provides an enhanced startapp management command. 
              An extra parameter called extra_context is supplied to allow for more flexible 
              app templates.
Home-page: http://github.com/saevarom/startappextracontext
Author: Sævar Öfjörð Magnússon
Author-email: saevar@saevar.is
License: MIT
Description: Installation
        ==========
        
        Installing: 
        
            easy_install django-startappextracontext
        
        or:
        
            pip install django-startappextracontext
        
        Then add `startappextracontext` to your `INSTALLED_APPS`:
        
            INSTALLED_APPS = (
                #... your other apps
        
                ('startappextracontext'),
            )
        
        Example usage
        ===========
        
        To create an new app called `my_stuff` from a custom template residing in `~/my-custom-app-template` with the 
        custom variable `model_name` with value `Stuff` you can do the following:
        
            ./manage.py startappextracontext --template=~/my-custom-app-template --extra-context=[model_name]Stuff my_stuff
        
Platform: any
Classifier: Development Status :: 4 - Beta
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
Classifier: Framework :: Django
