Altered buildout configuration files to have MySQL-Python only on production.
--- a/buildout.cfg Wed Jul 14 19:34:34 2010 +0530
+++ b/buildout.cfg Thu Jul 15 00:50:16 2010 +0530
@@ -1,18 +1,14 @@
[buildout]
parts = django tagging
-eggs =
- Werkzeug
- MySQL-python
+eggs = Werkzeug
[django]
recipe = djangorecipe
version = 1.2.1
-settings = development
-eggs =
- ${buildout:eggs}
-pythonpath =
- ${tagging:location}
+settings = production
+eggs = ${buildout:eggs}
+pythonpath = ${tagging:location}
[tagging]
recipe = infrae.subversion
-urls = http://django-tagging.googlecode.com/svn/trunk/ .
\ No newline at end of file
+urls = http://django-tagging.googlecode.com/svn/trunk/ .
--- a/development.cfg Wed Jul 14 19:34:34 2010 +0530
+++ b/development.cfg Thu Jul 15 00:50:16 2010 +0530
@@ -1,9 +1,7 @@
[buildout]
-extends =
- buildout.cfg
+extends = buildout.cfg
-eggs +=
- pysqlite
+eggs += pysqlite
[django]
settings = development
--- a/production.cfg Wed Jul 14 19:34:34 2010 +0530
+++ b/production.cfg Thu Jul 15 00:50:16 2010 +0530
@@ -1,7 +1,3 @@
[buildout]
-extends =
- buildout.cfg
-
-#eggs +=
-# psycopg2
-#
\ No newline at end of file
+extends = buildout.cfg
+eggs += MySQL-python