aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2016-08-18 11:03:34 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2016-08-18 11:03:34 -0500
commit07e88134b36bee0f6c0b195ab4b978d761f77ebb (patch)
treeb965b1ca2a80a66678b72a0f12f2c9e6ea9caf7a
parenta8e3c38d80f31c280da42f4c7d6b565640d24bd1 (diff)
downloaduritemplates-07e88134b36bee0f6c0b195ab4b978d761f77ebb.tar.gz
Release v1.0.1
Fix up some packaging issues
-rw-r--r--HISTORY.rst5
-rw-r--r--setup.py3
-rw-r--r--uritemplate/__init__.py2
3 files changed, 8 insertions, 2 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index 13e3bf8..bd0ef1e 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -1,6 +1,11 @@
Changelog
=========
+1.0.1 - 2016-08-18
+------------------
+
+- Fix some minor packaging problems.
+
1.0.0 - 2016-08-17
------------------
diff --git a/setup.py b/setup.py
index a4a073d..d1ce0d9 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ setup(
description='URI templates',
long_description="\n\n".join([open("README.rst").read(),
open("HISTORY.rst").read()]),
- license=open('LICENSE').read(),
+ license="BSD 3-Clause License",
author="Ian Cordasco",
author_email="graffatcolmingov@gmail.com",
url="https://uritemplate.readthedocs.org",
@@ -22,6 +22,7 @@ setup(
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved',
+ 'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
diff --git a/uritemplate/__init__.py b/uritemplate/__init__.py
index 3454c66..fca1623 100644
--- a/uritemplate/__init__.py
+++ b/uritemplate/__init__.py
@@ -16,7 +16,7 @@ __title__ = 'uritemplate'
__author__ = 'Ian Cordasco'
__license__ = 'Modified BSD'
__copyright__ = 'Copyright 2013 Ian Cordasco'
-__version__ = '1.0.0'
+__version__ = '1.0.1'
__version_info__ = tuple(int(i) for i in __version__.split('.'))
from uritemplate.api import URITemplate, expand, partial # noqa: E402