diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-01-04 14:39:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-04 14:39:58 -0500 |
commit | 5f976639ee947a83dadf888e1307401980d01434 (patch) | |
tree | d54727ea2ee18d256f5559cfaa991abb8158a243 /setup.py | |
parent | 63b0c6b3a92cab837a71bbad78e777c522823c93 (diff) | |
parent | c447ee4b1bff681396a4c6bff54decd6ce852e55 (diff) | |
download | cmd2-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-x | setup.py | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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 |