From 36131a385bfea38166dd73800b0fc9bda47d9d54 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Sat, 23 Jan 2016 18:39:35 -0800 Subject: [PATCH] Fix missing python-six dependency for Zulip API. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 746afb9..ae2b69d 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,7 @@ package_info = dict( setuptools_info = dict( install_requires=['requests>=0.12.1', 'simplejson', + 'six', ], )