diff options
-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 |