summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorEric Lin <anselor@gmail.com>2018-04-16 22:41:14 -0400
committerEric Lin <anselor@gmail.com>2018-04-16 22:41:14 -0400
commitd5d42fbc1ec809723eb353a5d1b1c4ead36e2bb1 (patch)
tree50464f94633ecc60a3c5580db113048d97fc8abf /setup.py
parentcd60899b13057f769686e9bf0df555955436592c (diff)
downloadcmd2-git-d5d42fbc1ec809723eb353a5d1b1c4ead36e2bb1.tar.gz
More changes for Python 3.4
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 8d3f9a8a..0944c585 100755
--- a/setup.py
+++ b/setup.py
@@ -80,6 +80,7 @@ if int(setuptools.__version__.split('.')[0]) < 18:
INSTALL_REQUIRES.append('wcwidth')
if sys.version_info < (3, 5):
INSTALL_REQUIRES.append('contextlib2')
+ INSTALL_REQUIRES.append('typing')
TESTS_REQUIRE = ['pytest', 'pytest-xdist']
DOCS_REQUIRE = ['sphinx', 'sphinx_rtd_theme', 'pyparsing', 'pyperclip', 'wcwidth']