diff options
author | Madhusudan.C.S | 2010-07-15 00:50:16 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2010-07-15 00:50:16 +0530 |
commit | 400f672802ffa420f1e229b25889db72a37e1132 (patch) | |
tree | df7076ee8d7ee7485c3799ea7e37e1f47bbf3ff7 | |
parent | 512149b429733c8a42656cdacfb412e3856a8fe7 (diff) | |
download | scipycon-400f672802ffa420f1e229b25889db72a37e1132.tar.gz scipycon-400f672802ffa420f1e229b25889db72a37e1132.tar.bz2 scipycon-400f672802ffa420f1e229b25889db72a37e1132.zip |
Altered buildout configuration files to have MySQL-Python only on production.
-rw-r--r-- | buildout.cfg | 14 | ||||
-rw-r--r-- | development.cfg | 6 | ||||
-rw-r--r-- | production.cfg | 8 |
3 files changed, 9 insertions, 19 deletions
diff --git a/buildout.cfg b/buildout.cfg index 5acd629..fc620c4 100644 --- a/buildout.cfg +++ b/buildout.cfg @@ -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/ . diff --git a/development.cfg b/development.cfg index 87de778..25c67ba 100644 --- a/development.cfg +++ b/development.cfg @@ -1,9 +1,7 @@ [buildout] -extends = - buildout.cfg +extends = buildout.cfg -eggs += - pysqlite +eggs += pysqlite [django] settings = development diff --git a/production.cfg b/production.cfg index ee5ddc9..f6e0909 100644 --- a/production.cfg +++ b/production.cfg @@ -1,7 +1,3 @@ [buildout] -extends = - buildout.cfg - -#eggs += -# psycopg2 -#
\ No newline at end of file +extends = buildout.cfg +eggs += MySQL-python |