diff options
Diffstat (limited to 'buildout.cfg')
-rw-r--r-- | buildout.cfg | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/buildout.cfg b/buildout.cfg index e42274a..cc20536 100644 --- a/buildout.cfg +++ b/buildout.cfg @@ -1,16 +1,23 @@ [buildout] -parts = django tagging +parts = django tagging django-robots eggs = Werkzeug PIL + docutils [django] recipe = djangorecipe version = 1.2.1 settings = production eggs = ${buildout:eggs} -pythonpath = ${tagging:location} +pythonpath = + ${tagging:location} + ${django-robots:location} [tagging] recipe = infrae.subversion urls = http://django-tagging.googlecode.com/svn/trunk/ . + +[django-robots] +recipe = mercurialrecipe +repository = http://bitbucket.org/jezdez/django-robots/ |