Skip to content

Commit dd109e2

Browse files
committed
Bootstrap distribute/tox with setuptools
Is there a better way to do this?
1 parent 4990381 commit dd109e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os.path
22
import sys
33

4-
from distutils.core import setup, Command
4+
from setuptools import setup, Command
55

66

77
class Tox(Command):
@@ -21,7 +21,7 @@ def run(self):
2121
name="kafka-python",
2222
version="0.8.1-1",
2323

24-
install_requires=["distribute"],
24+
install_requires=["distribute", "tox"],
2525
tests_require=["tox"],
2626
cmdclass={"test": Tox},
2727

0 commit comments

Comments
 (0)