diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-06-24 09:30:18 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-06-24 09:30:18 -0400 |
commit | b72a8ba7eed899ee8c44da36aa2636496bff89c7 (patch) | |
tree | 7ad860c98f534ba53a2f018967226004ad69a4a6 /setup.py | |
parent | f57c7621ff18c8ee3888df2cb20711411886e484 (diff) | |
download | cmd2-git-b72a8ba7eed899ee8c44da36aa2636496bff89c7.tar.gz |
Set version to 0.7.4b for now
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -5,7 +5,7 @@ Setuptools setup file, used to install or test 'cmd2' """ from setuptools import setup -VERSION = '0.7.3' +VERSION = '0.7.4b' DESCRIPTION = "Extra features for standard library's cmd module" LONG_DESCRIPTION = """cmd2 is an enhancement to the standard library's cmd module for Python 2.7 @@ -16,7 +16,7 @@ https://cmd2.readthedocs.io/ Drop-in replacement adds several features for command-prompt tools: - * Searchable command history (commands: "hi", "li", "run") + * Searchable command history (commands: "history", "run") * Load commands from file, save to file, edit commands in file * Multi-line commands * Case-insensitive commands @@ -28,6 +28,8 @@ Drop-in replacement adds several features for command-prompt tools: * bare >, >>, < redirect to/from paste buffer * accepts abbreviated commands when unambiguous * `py` enters interactive Python console + * `pyscript` executes a Python script + * Good tab-completion of commands and file system paths * test apps against sample session transcript (see examples/example.py) Usable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd. |