From 5ae49228b709e6c5671096984e0db62010ac86e4 Mon Sep 17 00:00:00 2001 From: Chris Lane Date: Tue, 29 Jan 2019 11:42:14 -0500 Subject: [PATCH] Added termcolor dependency to setup.py Added a missing `termcolor` dependency to `install_requires` in `setup.py`. `termcolors` was introduced as an optional dependency when the `CHEAT_HIGHLIGHT` envvar was implemented. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index f81844c..b4f051e 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,7 @@ setup( install_requires = [ 'docopt >= 0.6.1', 'pygments >= 1.6.0', + 'termcolor >= 1.1.0', ], data_files = [ (cheat_path, cheat_files),