diff options
Diffstat (limited to 'buildout.cfg')
-rw-r--r-- | buildout.cfg | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/buildout.cfg b/buildout.cfg index 57fd230..3d82a4c 100644 --- a/buildout.cfg +++ b/buildout.cfg @@ -1,16 +1,27 @@ [buildout] -parts = django tagging django-robots south +parts = django tagging django-robots south reportlab eggs = Werkzeug PIL docutils + +[versions] +reportlab=2.5 + +[reportlab] +recipe=zc.recipe.egg +eggs= reportlab +find-links= + http://distfiles.minitage.org/public/externals/minitage/ [django] recipe = djangorecipe version = 1.2.1 settings = production -eggs = ${buildout:eggs} +eggs = + ${buildout:eggs} + ${reportlab:eggs} pythonpath = ${tagging:location} ${django-robots:location} |