blob: 4384367dfb25cd4b7d475cd9111683527f7bac6d [file] [log] [blame]
"""
uritemplate
===========
The URI templating library for humans.
See http://uritemplate.rtfd.org/ for documentation
:copyright: (c) 2013 Ian Cordasco
:license: Modified BSD, see LICENSE for more details
"""
__title__ = 'uritemplate'
__author__ = 'Ian Cordasco'
__license__ = 'Modified BSD'
__copyright__ = 'Copyright 2013 Ian Cordasco'
__version__ = '0.1.1'
__version_info__ = tuple(int(i) for i in __version__.split('.'))
from uritemplate.api import URITemplate, expand
__all__ = [URITemplate, expand]