diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-06-28 23:58:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-28 23:58:44 -0400 |
commit | e03c6c25f6804f9895c29175e4e8bc7b98ba361e (patch) | |
tree | 70510ce430ec6230f528c321f6df222607f93e74 /setup.py | |
parent | d5cacbf99100e722d265816483c8953d7e81a3b6 (diff) | |
parent | 21f45c49898740adb5bb84258e6c3d744eab5520 (diff) | |
download | cmd2-git-e03c6c25f6804f9895c29175e4e8bc7b98ba361e.tar.gz |
Merge pull request #456 from python-cmd2/table_display0.9.2
table_display.py example now uses tableformatter instead of tabulate
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ Setuptools setup file, used to install or test 'cmd2' """ from setuptools import setup -VERSION = '0.9.2a' +VERSION = '0.9.2' 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 |