From 5ed582dd7f0b9213f983b795a497e1969093cd42 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 3 Dec 2014 20:57:47 -0600 Subject: [PATCH] Add install_requires for six --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 1d7b3d1c..22115c0c 100755 --- a/setup.py +++ b/setup.py @@ -141,6 +141,9 @@ if __name__ == "__main__": ], configuration=configuration, + install_requires=[ + "six>=%s" % DEPENDENCIES['six'] + ], packages=setuptools.find_packages(exclude=['doc']), include_package_data=True, zip_safe=False, # the package can run out of an .egg file