diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-28 12:24:11 -0400 |
|---|---|---|
| committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-28 12:24:11 -0400 |
| commit | 85a3cc1320bafc2a44c75b630835bcc0635b61de (patch) | |
| tree | cc68ed454dfa0a1ae3832188c7e07717119d63fc /setup.py | |
| parent | e54ea631d81d2e94633f4f37b5c8ced899b3c354 (diff) | |
| download | cmd2-git-85a3cc1320bafc2a44c75b630835bcc0635b61de.tar.gz | |
Removed pyparsing from setup.py as a dependency
Also:
- updated README.md to correctly state 3rd-party dependencies
- Updated docs/requirements.txt to no longer include pyparsing for ReadTheDocs build
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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", |
