diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-10-11 22:12:32 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-10-11 22:12:32 -0400 |
commit | d80aeb36f92f55ef0857be78b804ff5bf7d75fb9 (patch) | |
tree | b9c7b6f59360ee1fb361cfa76f2acff3c07dec00 /README.md | |
parent | 7ef96d39fa971d8624fe46b9508067f0f1a78950 (diff) | |
download | cmd2-git-d80aeb36f92f55ef0857be78b804ff5bf7d75fb9.tar.gz |
Using wcwidth to calculate display width of prompt
Diffstat (limited to 'README.md')
-rwxr-xr-x | README.md | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -60,11 +60,10 @@ pip install -U cmd2 cmd2 works with Python 3.4+ on Windows, macOS, and Linux. It is pure Python code with the only 3rd-party dependencies being on [attrs](https://github.com/python-attrs/attrs), -[colorama](https://github.com/tartley/colorama), and [pyperclip](https://github.com/asweigart/pyperclip). -Windows has an additional dependency on [pyreadline](https://pypi.python.org/pypi/pyreadline). Non-Windows platforms -have an additional dependency on [wcwidth](https://pypi.python.org/pypi/wcwidth). Finally, Python -3.4 has additional dependencies on [contextlib2](https://pypi.python.org/pypi/contextlib2) and the -[typing](https://pypi.org/project/typing/) backport. +[colorama](https://github.com/tartley/colorama), [pyperclip](https://github.com/asweigart/pyperclip), and +[wcwidth](https://pypi.python.org/pypi/wcwidth). Windows has an additional dependency on +[pyreadline](https://pypi.python.org/pypi/pyreadline). Finally, Python 3.4 has additional dependencies +on [contextlib2](https://pypi.python.org/pypi/contextlib2) and the [typing](https://pypi.org/project/typing/) backport. For information on other installation options, see [Installation Instructions](https://cmd2.readthedocs.io/en/latest/install.html) in the cmd2 |