diff options
-rwxr-xr-x | README.md | 2 | ||||
-rw-r--r-- | docs/requirements.txt | 3 | ||||
-rwxr-xr-x | setup.py | 4 |
3 files changed, 4 insertions, 5 deletions
@@ -57,7 +57,7 @@ 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 [pyparsing](http://pyparsing.wikispaces.com), and [pyperclip](https://github.com/asweigart/pyperclip). +the only 3rd-party dependencies being on [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 an additional dependency on [contextlib2](https://pypi.python.org/pypi/contextlib2). diff --git a/docs/requirements.txt b/docs/requirements.txt index d22f9341..011603fb 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,4 +1,3 @@ -pyparsing +colorama pyperclip wcwidth -colorama @@ -61,7 +61,7 @@ Programming Language :: Python :: Implementation :: PyPy3 Topic :: Software Development :: Libraries :: Python Modules """.splitlines()))) -INSTALL_REQUIRES = ['pyparsing >= 2.1.0', 'pyperclip >= 1.5.27', 'colorama'] +INSTALL_REQUIRES = ['pyperclip >= 1.5.27', 'colorama'] EXTRAS_REQUIRE = { # Windows also requires pyreadline to ensure tab completion works @@ -83,7 +83,7 @@ if int(setuptools.__version__.split('.')[0]) < 18: INSTALL_REQUIRES.append('typing') TESTS_REQUIRE = ['pytest', 'pytest-xdist'] -DOCS_REQUIRE = ['sphinx', 'sphinx_rtd_theme', 'pyparsing', 'pyperclip', 'wcwidth'] +DOCS_REQUIRE = ['sphinx', 'sphinx_rtd_theme', 'pyperclip', 'wcwidth'] setup( name="cmd2", |