1""" 2 3uritemplate 4=========== 5 6The URI templating library for humans. 7 8See http://uritemplate.rtfd.org/ for documentation 9 10:copyright: (c) 2013-2015 Ian Cordasco 11:license: Modified BSD, see LICENSE for more details 12 13""" 14 15__title__ = 'uritemplate' 16__author__ = 'Ian Cordasco' 17__license__ = 'Modified BSD or Apache License, Version 2.0' 18__copyright__ = 'Copyright 2013 Ian Cordasco' 19__version__ = '3.0.0' 20__version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit()) 21 22from uritemplate.api import ( 23 URITemplate, expand, partial, variables # noqa: E402 24) 25 26__all__ = ('URITemplate', 'expand', 'partial', 'variables') 27