Metadata-Version: 1.0
Name: djangorecipe
Version: 0.1dev
Summary: Buildout recipe for Django
Home-page: https://launchpad.net/djangorecipe
Author: Jeroen Vloothuis
Author-email: jeroen.vloothuis@xs4all.nl
License: BSD
Description: 
        This buildout recipe can be used to create a setup for Django. It will
        automatically download Django and install it in the buildout's
        sandbox. You can use either a release version of Django or a
        subversion checkout (by using `trunk` instead of a version number.
        
        You can see an example of how to use the recipe below::
        
        [buildout]
        parts = satchmo django
        eggs = ipython
        
        [satchmo]
        recipe = gocept.download
        url = http://www.satchmoproject.com/snapshots/satchmo-0.6.tar.gz
        md5sum = 659a4845c1c731be5cfe29bfcc5d14b1
        
        [django]
        recipe = djangorecipe
        version = 0.96.1
        settings = development
        eggs = ${buildout:eggs}
        pythonpath =
        ${satchmo:location}
        project = dummyshop
        
Platform: UNKNOWN
Classifier: Framework :: Buildout
Classifier: Topic :: Software Development :: Build Tools
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: BSD License
