summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2018-01-07 12:09:31 -0700
committerkotfu <kotfu@kotfu.net>2018-01-07 12:09:31 -0700
commit4f54d10f4c8d5b5c03626a88f8198318a8080fc6 (patch)
treec567676617cbb0cad1139b9267e00e7ad8f531dc /setup.py
parentd63c878413006630834324d71bd22f012bc543a8 (diff)
parent2a474dc8f13a3a4558136215a7a1706ba13ba732 (diff)
downloadcmd2-git-4f54d10f4c8d5b5c03626a88f8198318a8080fc6.tar.gz
Merge branch 'master' of github.com:python-cmd2/cmd2 into argparse
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index efe715be..ca4200fc 100755
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ Setuptools setup file, used to install or test 'cmd2'
import sys
from setuptools import setup
-VERSION = '0.7.9a'
+VERSION = '0.7.9'
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
@@ -32,7 +32,7 @@ Main features:
- Parsing commands with flags
- Unicode character support (*Python 3 only*)
- Good tab-completion of commands, file system paths, and shell commands
- - Python 2.7 and 3.3+ support
+ - Python 2.7 and 3.4+ support
- Linux, macOS and Windows support
- Trivial to provide built-in help for all commands
- Built-in regression testing framework for your applications (transcript-based testing)
@@ -52,7 +52,6 @@ Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
-Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6