1"""
2
3uritemplate
4===========
5
6URI templates implemented as close to :rfc:`6570` as possible
7
8See http://uritemplate.rtfd.org/ for documentation
9
10:copyright:
11 (c) 2013 Ian Stapleton Cordasco
12:license:
13 Modified BSD Apache License (Version 2.0), see LICENSE for more details
14 and either LICENSE.BSD or LICENSE.APACHE for the details of those specific
15 licenses
16
17"""
18
19__title__ = "uritemplate"
20__author__ = "Ian Stapleton Cordasco"
21__license__ = "Modified BSD or Apache License, Version 2.0"
22__copyright__ = "Copyright 2013 Ian Stapleton Cordasco"
23__version__ = "4.1.1"
24__version_info__ = tuple(
25 int(i) for i in __version__.split(".") if i.isdigit()
26)
27
28from uritemplate.api import (
29 URITemplate,
30 expand,
31 partial,
32 variables,
33)
34
35__all__ = ("URITemplate", "expand", "partial", "variables")