summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorkmvanbrunt <kmvanbrunt@gmail.com>2018-10-12 12:26:04 -0400
committerGitHub <noreply@github.com>2018-10-12 12:26:04 -0400
commitb216987165d7783903e02db006cf5055f2615796 (patch)
tree0851e964a9d715ebf5ad321f0212b83d6b8f7712 /setup.py
parent11bc029a20168312eaa999e62b45989b6b1d11ef (diff)
parentfbf2a224fcf0e47102c4fcd3ce29c51228b7d931 (diff)
downloadcmd2-git-b216987165d7783903e02db006cf5055f2615796.tar.gz
Merge pull request #575 from python-cmd2/prompt_update
Do not asynchronously redraw continuation prompts
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 861813c7..607bc346 100755
--- a/setup.py
+++ b/setup.py
@@ -66,13 +66,11 @@ Topic :: Software Development :: Libraries :: Python Modules
SETUP_REQUIRES = ['setuptools_scm']
-INSTALL_REQUIRES = ['pyperclip >= 1.5.27', 'colorama', 'attrs >= 16.3.0']
+INSTALL_REQUIRES = ['pyperclip >= 1.5.27', 'colorama', 'attrs >= 16.3.0', 'wcwidth >= 0.1.7']
EXTRAS_REQUIRE = {
# Windows also requires pyreadline to ensure tab completion works
":sys_platform=='win32'": ['pyreadline'],
- # POSIX OSes also require wcwidth for correctly estimating the displayed width of unicode chars
- ":sys_platform!='win32'": ['wcwidth'],
# Python 3.4 and earlier require contextlib2 for temporarily redirecting stderr and stdout
":python_version<'3.5'": ['contextlib2', 'typing'],
# Extra dependencies for running unit tests