summaryrefslogtreecommitdiff
path: root/buildout.cfg
diff options
context:
space:
mode:
authorMadhusudan.C.S2009-10-30 15:09:12 +0530
committerMadhusudan.C.S2009-10-30 15:09:12 +0530
commitf89410559c20dd88d78ccd6b9d24e7941da9d5ff (patch)
tree3ad4fb64efc7523d1f3065e0dd03693871d6ce55 /buildout.cfg
parent75f0773685ef0724d8ccc1eb1aab16bba55cd7a7 (diff)
downloadscipycon-f89410559c20dd88d78ccd6b9d24e7941da9d5ff.tar.gz
scipycon-f89410559c20dd88d78ccd6b9d24e7941da9d5ff.tar.bz2
scipycon-f89410559c20dd88d78ccd6b9d24e7941da9d5ff.zip
Added all the files from kiwipycon and the changes made for SciPy.in.
Diffstat (limited to 'buildout.cfg')
-rw-r--r--buildout.cfg74
1 files changed, 74 insertions, 0 deletions
diff --git a/buildout.cfg b/buildout.cfg
new file mode 100644
index 0000000..e65cbfc
--- /dev/null
+++ b/buildout.cfg
@@ -0,0 +1,74 @@
+[buildout]
+extensions = jarn.setuptoolsfixer
+
+find-links =
+ http://effbot.org/downloads
+ http://dist.repoze.org/
+
+parts =
+ django
+ basic-apps
+ tagging
+ django-command-extensions
+ south
+ registration
+ reportlab
+
+eggs =
+ PIL
+ HTML5lib
+ pisa
+ Werkzeug
+ elementtree
+ docutils
+ markdown
+ textile
+ beautifulsoup
+
+[versions]
+reportlab=2.3
+
+[reportlab]
+recipe=zc.recipe.egg
+eggs=
+ reportlab
+find-links=
+ http://distfiles.minitage.org/public/externals/minitage/
+
+[django]
+recipe = djangorecipe
+version = 1.1
+settings = production
+eggs =
+ ${buildout:eggs}
+ ${reportlab:eggs}
+pythonpath =
+ ${basic-apps:location}
+ ${tagging:location}
+ ${django-command-extensions:location}
+ ${south:location}
+ ${registration:location}
+
+[basic-apps]
+recipe = infrae.subversion
+urls =
+ http://django-basic-apps.googlecode.com/svn/trunk/ basic
+
+[tagging]
+recipe = infrae.subversion
+urls =
+ http://django-tagging.googlecode.com/svn/trunk/ .
+
+[django-command-extensions]
+recipe = zerokspot.recipe.git
+repository = http://github.com/django-extensions/django-extensions.git
+
+[south]
+recipe = infrae.subversion
+urls =
+ http://svn.aeracode.org/svn/south/tags/0.5/ .
+
+[registration]
+recipe = mercurialrecipe
+repository = http://bitbucket.org/ubernostrum/django-registration/
+