diff options
author | Madhusudan.C.S | 2011-01-18 21:55:13 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2011-01-18 21:55:13 +0530 |
commit | 312d9fae39b2c531b3606896d7febf75d67a2026 (patch) | |
tree | 2ce3e88722f73e2ed4e68d2bd0ed4a7b792b6121 | |
parent | a4e8b45709898d1f4f0626293e41a7442aaca2e9 (diff) | |
download | pytask-312d9fae39b2c531b3606896d7febf75d67a2026.tar.gz pytask-312d9fae39b2c531b3606896d7febf75d67a2026.tar.bz2 pytask-312d9fae39b2c531b3606896d7febf75d67a2026.zip |
Add support to werkzeug and the most sought after django command extensions app.
-rw-r--r-- | buildout.cfg | 14 |
1 files changed, 13 insertions, 1 deletions
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 |