view buildout.cfg @ 9:8e1c24d9067d

Fix object display. Implement xml and binary representations download.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 15 Jun 2011 17:48:42 +0200
parents 2b7f9772585a
children 04b93e15bb71
line wrap: on
line source

[buildout]
parts = flask wsgi
develop = src

[flask]
recipe = zc.recipe.egg
eggs = 
     Flask
     WTForms
     ordereddict
     ltpdarepo
     zope.testbrowser [wsgi]
interpreter = python

[wsgi]
recipe = zc.recipe.egg
eggs = ${flask:eggs}
entry-points =
    wsgi=ltpdarepo:main
initialization =
    from ltpdarepo import app as application
    application.config.from_pyfile('${buildout:directory}/src/ltpdarepo/config.py')