From 312d9fae39b2c531b3606896d7febf75d67a2026 Mon Sep 17 00:00:00 2001 From: Madhusudan.C.S Date: Tue, 18 Jan 2011 21:55:13 +0530 Subject: Add support to werkzeug and the most sought after django command extensions app. --- buildout.cfg | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/buildout.cfg b/buildout.cfg index 2dc4b2c..3eb6d03 100644 --- a/buildout.cfg +++ b/buildout.cfg @@ -1,8 +1,15 @@ [buildout] -parts = django tagging django-robots south registration +parts = + django + tagging + django-robots + south + registration + django-command-extensions eggs = PIL psycopg2 + Werkzeug [django] recipe = djangorecipe @@ -12,6 +19,7 @@ settings = settings eggs = ${buildout:eggs} pythonpath = + ${django-command-extensions:location} ${tagging:location} ${django-robots:location} ${south:location} @@ -32,3 +40,7 @@ repository = https://bitbucket.org/andrewgodwin/south/ [registration] recipe = mercurialrecipe repository = https://bitbucket.org/ubernostrum/django-registration/ + +[django-command-extensions] +recipe = zerokspot.recipe.git +repository = http://github.com/django-extensions/django-extensions.git \ No newline at end of file -- cgit