summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorYarkee Chou <iyarkee@gmail.com>2014-07-19 11:33:21 +0800
committerYarkee Chou <iyarkee@gmail.com>2014-07-19 11:33:21 +0800
commitfa9d921e6c5ab133dc38ccc5ce4d18cfe00b8422 (patch)
treec8dc540fb19bd90d559ea4cde3e4e1b02c0cc8c7 /setup.py
parentae6b49aca13d2d1df7e7f884b2a99c34aa839e18 (diff)
downloadkafka-python-fa9d921e6c5ab133dc38ccc5ce4d18cfe00b8422.tar.gz
Update setup.py
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index b8fd4a9..6e2c509 100644
--- a/setup.py
+++ b/setup.py
@@ -2,6 +2,7 @@ import sys
from setuptools import setup, Command
+from kafka import __version__
class Tox(Command):
@@ -20,7 +21,7 @@ class Tox(Command):
setup(
name="kafka-python",
- version="0.9.1",
+ version=__version__,
tests_require=["tox", "mock"],
cmdclass={"test": Tox},