From 052f64c5ab49ea23cc98ed50a4d85c2e08adfe72 Mon Sep 17 00:00:00 2001 From: cclauss Date: Mon, 7 May 2018 19:12:00 +0200 Subject: [PATCH] setup.py: install_requires=['six>=1.11.0'] We will require the popular [__six__](https://pypi.org/project/six) module to simplify our support of both Python 2 and Python 3. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a3c44866..51563398 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,8 @@ setup( '*.h', '*.cpp', '*.bash', '*.txt', '*.dll', '*.lib', '*.so', '*.pyd', '*.dat', '*.ini', '*.pfx', '*.scc', '*.crt', '*.key']}, + install_requires=['six>=1.11.0'], extras_require={ 'tq': ["tornado>=4.5.1", "sortedcontainers>=1.5.7"], } -) \ No newline at end of file +)