From 9637b3bb06a470e2044ba5790503aa45b1e76ff3 Mon Sep 17 00:00:00 2001 From: Benjamin Bach Date: Fri, 26 May 2017 18:27:01 +0200 Subject: [PATCH] Additional requirements missing in setup.py --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2b803ec..c48f970 100644 --- a/setup.py +++ b/setup.py @@ -51,11 +51,16 @@ def enable_log_to_stdout(logname): log.addHandler(ch) +INSTALL_REQUIRES = [ + 'six', + 'enum34>=1.1,<2', +] + PYTHON_2_BACKPORTS = [ "futures>=3.1.1", ] -INSTALL_REQUIRES = PYTHON_2_BACKPORTS if IS_PYTHON_2 else [] +INSTALL_REQUIRES += PYTHON_2_BACKPORTS if IS_PYTHON_2 else [] setup( name=dist_name,