summaryrefslogtreecommitdiff
path: root/buildout.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'buildout.cfg')
-rw-r--r--buildout.cfg34
1 files changed, 34 insertions, 0 deletions
diff --git a/buildout.cfg b/buildout.cfg
new file mode 100644
index 0000000..30169b2
--- /dev/null
+++ b/buildout.cfg
@@ -0,0 +1,34 @@
+[buildout]
+parts = django tagging django-robots south registration
+eggs =
+ PIL
+
+
+[django]
+recipe = djangorecipe
+version = 1.2.4
+project = pytask
+settings = settings
+eggs =
+ ${buildout:eggs}
+pythonpath =
+ ${tagging:location}
+ ${django-robots:location}
+ ${south:location}
+ ${registration:location}
+
+[tagging]
+recipe = infrae.subversion
+urls = http://django-tagging.googlecode.com/svn/trunk/ .
+
+[django-robots]
+recipe = mercurialrecipe
+repository = https://bitbucket.org/jezdez/django-robots/
+
+[south]
+recipe = mercurialrecipe
+repository = https://bitbucket.org/andrewgodwin/south/
+
+[registration]
+recipe = mercurialrecipe
+repository = https://bitbucket.org/ubernostrum/django-registration/