Altered buildout configuration files to have MySQL-Python only on production.
authorMadhusudan.C.S <madhusudancs@gmail.com>
Thu, 15 Jul 2010 00:50:16 +0530
changeset 103 034dc9cd752e
parent 102 68fb7911c438
child 104 1a83a26756c3
Altered buildout configuration files to have MySQL-Python only on production.
buildout.cfg
development.cfg
production.cfg
--- 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