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.
This commit is contained in:
Chris Lane 2019-01-29 11:42:14 -05:00
parent 09acdf1a69
commit 5ae49228b7
1 changed files with 1 additions and 0 deletions

View File

@ -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),