aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2015-10-04 20:45:10 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2015-10-04 20:45:10 -0500
commit995f88f79a4881df48af3e230c5ed9321176d071 (patch)
tree116b9ad9b12d8b6bd38e2bf7e2e9aec65713192c
parentdc1c35d0e38d110467f0e0bd2453e41f53f76b6f (diff)
downloaduritemplates-995f88f79a4881df48af3e230c5ed9321176d071.tar.gz
Update copyright, version, and __all__
-rw-r--r--uritemplate/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/uritemplate/__init__.py b/uritemplate/__init__.py
index 397b08c..d64865c 100644
--- a/uritemplate/__init__.py
+++ b/uritemplate/__init__.py
@@ -7,7 +7,7 @@ The URI templating library for humans.
See http://uritemplate.rtfd.org/ for documentation
-:copyright: (c) 2013 Ian Cordasco
+:copyright: (c) 2013-2015 Ian Cordasco
:license: Modified BSD, see LICENSE for more details
"""
@@ -16,9 +16,9 @@ __title__ = 'uritemplate'
__author__ = 'Ian Cordasco'
__license__ = 'Modified BSD'
__copyright__ = 'Copyright 2013 Ian Cordasco'
-__version__ = '0.3.0'
+__version__ = '0.3.1'
__version_info__ = tuple(int(i) for i in __version__.split('.'))
from uritemplate.api import URITemplate, expand, partial
-__all__ = [URITemplate, expand, partial]
+__all__ = ('URITemplate', 'expand', 'partial')