diff options
author | Madhusudan.C.S | 2011-07-24 17:48:08 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2011-07-24 18:09:39 +0530 |
commit | b3e975b01e7614d8ab27b209e00e5572374d522d (patch) | |
tree | adedf536717cd49d84b8fae21f08f78f2717bccd | |
parent | c4d077c7e292cbf7dfa178cb44d6effbe813f957 (diff) | |
download | pytask-b3e975b01e7614d8ab27b209e00e5572374d522d.tar.gz pytask-b3e975b01e7614d8ab27b209e00e5572374d522d.tar.bz2 pytask-b3e975b01e7614d8ab27b209e00e5572374d522d.zip |
Add django-pygments plugin to our build configuration.
Instead of writing this simple code ourself, which is in fact very
very simple, we use this plugin which provides Django templatetags
and filters. Reduces some manhours and at the same time gives us
opportunity to add more sophisticated things.
-rw-r--r-- | buildout.cfg | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/buildout.cfg b/buildout.cfg index 0a31e6f..0fc3f6b 100644 --- a/buildout.cfg +++ b/buildout.cfg @@ -5,10 +5,12 @@ parts = django-robots registration django-command-extensions + django-pygments + pygments-css eggs = PIL psycopg2 - pygments + Pygments South Werkzeug @@ -28,6 +30,7 @@ pythonpath = ${tagging:location} ${django-robots:location} ${registration:location} + ${django-pygments:location} [tagging] recipe = infrae.subversion @@ -48,3 +51,11 @@ repository = http://github.com/django-extensions/django-extensions.git [django-debug-toolbar] recipe = zerokspot.recipe.git repository = https://github.com/robhudson/django-debug-toolbar.git + +[django-pygments] +recipe = zerokspot.recipe.git +repository = https://github.com/odeoncg/django-pygments.git + +[pygments-css] +recipe = zerokspot.recipe.git +repository = https://github.com/richleland/pygments-css.git |