summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-06-24 09:30:18 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2017-06-24 09:30:18 -0400
commitb72a8ba7eed899ee8c44da36aa2636496bff89c7 (patch)
tree7ad860c98f534ba53a2f018967226004ad69a4a6 /setup.py
parentf57c7621ff18c8ee3888df2cb20711411886e484 (diff)
downloadcmd2-git-b72a8ba7eed899ee8c44da36aa2636496bff89c7.tar.gz
Set version to 0.7.4b for now
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 9e2f49f0..51118433 100755
--- a/setup.py
+++ b/setup.py
@@ -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.