diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-02-11 23:23:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-11 23:23:51 -0500 |
commit | 4a765e16e64d0b8479921f2e36b4cb8b97db92b1 (patch) | |
tree | d5177fbf8ea7a732ae21febbf7e1c006e059ce2e /setup.py | |
parent | 4895d5d8db4e57e2ef9a062473a8536f4f07f213 (diff) | |
parent | f3c6b1b32d614076dc17d2736ae1860d37a36cd5 (diff) | |
download | cmd2-git-4a765e16e64d0b8479921f2e36b4cb8b97db92b1.tar.gz |
Merge pull request #270 from python-cmd2/persistent_history
Added optional persistent readline history feature
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,7 +6,7 @@ Setuptools setup file, used to install or test 'cmd2' import sys from setuptools import setup -VERSION = '0.8.0' +VERSION = '0.8.1' DESCRIPTION = "cmd2 - a tool for building interactive command line applications in Python" LONG_DESCRIPTION = """cmd2 is a tool for building interactive command line applications in Python. Its goal is to make it quick and easy for developers to build feature-rich and user-friendly interactive command line applications. It @@ -77,7 +77,7 @@ if sys.version_info < (3, 0): INSTALL_REQUIRES += ['subprocess32'] # unittest.mock was added in Python 3.3. mock is a backport of unittest.mock to all versions of Python -TESTS_REQUIRE = ['mock', 'pytest'] +TESTS_REQUIRE = ['mock', 'pytest', 'pexpect'] DOCS_REQUIRE = ['sphinx', 'sphinx_rtd_theme', 'pyparsing', 'pyperclip', 'six'] setup( |