diff options
author | kmvanbrunt <kmvanbrunt@gmail.com> | 2018-10-12 12:26:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-12 12:26:04 -0400 |
commit | b216987165d7783903e02db006cf5055f2615796 (patch) | |
tree | 0851e964a9d715ebf5ad321f0212b83d6b8f7712 /setup.py | |
parent | 11bc029a20168312eaa999e62b45989b6b1d11ef (diff) | |
parent | fbf2a224fcf0e47102c4fcd3ce29c51228b7d931 (diff) | |
download | cmd2-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-x | setup.py | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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 |