summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index a246914..fedf139 100644
--- a/setup.py
+++ b/setup.py
@@ -1,11 +1,12 @@
-import os.path
import sys
from setuptools import setup, Command
class Tox(Command):
+
user_options = []
+
def initialize_options(self):
pass
@@ -21,7 +22,7 @@ setup(
name="kafka-python",
version="0.8.1-1",
- install_requires=["distribute", "tox"],
+ install_requires=["distribute", "tox", "mock"],
tests_require=["tox"],
cmdclass={"test": Tox},