From 809e175b47e83d51690ded6dd8926abb3ffaecc6 Mon Sep 17 00:00:00 2001 From: sharkykh Date: Thu, 22 Aug 2019 21:50:09 +0300 Subject: [PATCH] Add missing `six` dependency --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index df400905..3c54ee87 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ with io.open(os.path.join(here, 'HISTORY.rst'), encoding='utf-8') as f: history = f.read() -install_requires = ['rebulk', 'babelfish', 'python-dateutil'] +install_requires = ['rebulk', 'babelfish', 'python-dateutil', 'six'] setup_requires = ['pytest-runner']