Metadata-Version: 1.0
Name: django-startcbv
Version: 0.2
Summary: Management command to start an app with class-based views.
Home-page: http://github.com/audreyr/django-startcbv
Author: Audrey Roy
Author-email: audreyr@gmail.com
License: MIT
Description: ===============
        django-startcbv
        ===============
        
        Installation
        ------------
        
        Add django-startcbv==0.1 to requirements.txt, then just::
        
            pip install -r requirements.txt
        
        Usage
        -----
        
        For all of the following steps, replace "things" with the name of the app that you wish to create::
        
            python manage.py startcbv things
        
        Add your "things" app to INSTALLED_APPS in settings.py::
        
            INSTALLED_APPS = (
                ...
                'things',
            )
        
        Add your "things" app URL pattern to urls.py::
        
            url(r'^things/', include('things.urls')),
        
        Then::
        
            python manage.py syncdb
            python manage.py runserver
        
        License
        -------
        
        This code is licensed under the MIT License.
Keywords: django
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: JavaScript
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
