summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-01-04 14:39:58 -0500
committerGitHub <noreply@github.com>2018-01-04 14:39:58 -0500
commit5f976639ee947a83dadf888e1307401980d01434 (patch)
treed54727ea2ee18d256f5559cfaa991abb8158a243 /setup.py
parent63b0c6b3a92cab837a71bbad78e777c522823c93 (diff)
parentc447ee4b1bff681396a4c6bff54decd6ce852e55 (diff)
downloadcmd2-git-5f976639ee947a83dadf888e1307401980d01434.tar.gz
Merge pull request #243 from python-cmd2/release_prep0.7.9
Abandoned official support for Python 3.3
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