summaryrefslogtreecommitdiff
path: root/pystache/__init__.py
blob: c4a65dc156ba0d9c764d11b7b142f082d26730cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

"""
TODO: add a docstring.

"""

# We keep all initialization code in a separate module.

from pystache.init import render, Renderer, TemplateSpec

__all__ = ['render', 'Renderer', 'TemplateSpec']

__version__ = '0.5.1-alpha'  # Also change in setup.py.