aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2016-08-20 07:04:57 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2016-08-20 07:04:57 -0500
commit91253e7f132b9cea7e8f0c8659491b67e3d1d9b9 (patch)
tree0285ef21f29b2528b5a81aac1a294f27b50e08a3
parent6c1d9effa0efee0852dbc887622e05a3cc4f7f4b (diff)
downloaduritemplates-91253e7f132b9cea7e8f0c8659491b67e3d1d9b9.tar.gz
Make uritemplate release candidate
-rw-r--r--setup.py2
-rw-r--r--uritemplate/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index b267ae0..59f03ba 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@ packages = [
]
setup(
- name="uritemplate.py",
+ name="uritemplate",
version=__version__,
description='URI templates',
long_description="\n\n".join([open("README.rst").read(),
diff --git a/uritemplate/__init__.py b/uritemplate/__init__.py
index ad751c1..bcee6ab 100644
--- a/uritemplate/__init__.py
+++ b/uritemplate/__init__.py
@@ -16,7 +16,7 @@ __title__ = 'uritemplate'
__author__ = 'Ian Cordasco'
__license__ = 'Modified BSD or Apache License, Version 2.0'
__copyright__ = 'Copyright 2013 Ian Cordasco'
-__version__ = '2.0.0'
+__version__ = '2.0.0rc1'
__version_info__ = tuple(int(i) for i in __version__.split('.'))
from uritemplate.api import URITemplate, expand, partial # noqa: E402