summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-07-01 17:57:03 +0000
committerGerrit Code Review <review@openstack.org>2012-07-01 17:57:03 +0000
commita325aad8a491a497272a7b165cbaa7577ce27654 (patch)
tree950fcca9232fdb494f9eb6e6db4d13a3c9893594 /setup.py
parent47f8786cc97914f8e9e021773ac972c1e9400f8b (diff)
parent51bceabd18b04a5663584a054322c9a04fcc29db (diff)
downloadpython-swiftclient-1.1.1.tar.gz
Merge "Add post-tag versioning."1.1.1
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/setup.py b/setup.py
index 2c5e8e5..235a0f8 100644
--- a/setup.py
+++ b/setup.py
@@ -20,11 +20,7 @@ import setuptools
import sys
from swiftclient.openstack.common import setup
-from swiftclient import version
-# TODO: Figuring out how we are going to do the versioning (and if
-# any).
-version = version
name = 'python-swiftclient'
requires = setup.parse_requirements()
@@ -36,7 +32,7 @@ def read(fname):
setuptools.setup(
name=name,
- version=version,
+ version=setup.get_post_version('swiftclient'),
description='Client Library for OpenStack Object Storage API',
long_description=read('README.rst'),
url='https://github.com/openstack/python-swiftclient',