It's been a while since pyramid-breve package was published. Shame on
me, that was not ever announced on this group. As they say its better
to do something late than never.
Pyramid-breve is simple package that makes it little bit easier to use
Breve templates with Pyramid framework. Just install it with hopefully
usual:
$ pip install pyramid-breve
or, more traditionally:
$ easy_install pyramid-breve
Then activate it in your Pyramid application like following:
def main(global_config, **settings):
config = Configurator(settings=settings)
# do your usual stuff here
config.include('pyramid_breve')
# keep doing your usual stuff
And eventually use it as view renderer as following:
@view_config(..., renderer='templates/some.b')
def some_view(request):
...
Please use
https://github.com/momyc/pyramid-breve to report bugs ans
feature requests.