summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2018-05-28 16:23:54 -0600
committerkotfu <kotfu@kotfu.net>2018-05-28 16:23:54 -0600
commitf7369577f35f5f682070e9c0df15265efbe83002 (patch)
tree27b655d63e0a1395ad7be3ef2219c0b82fec883f /setup.py
parent3b49e52cc55cbfc7ed8fa0cedc97d626325a4bd1 (diff)
parenta72219b1431627fdd2ce500d5f0f2bad26b3a6d3 (diff)
downloadcmd2-git-f7369577f35f5f682070e9c0df15265efbe83002.tar.gz
Merge branch 'master' into plugin_functions
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 240dfe43..193dab27 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.9.0'
+VERSION = '0.9.1'
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
@@ -37,6 +37,9 @@ Main features:
- Transcripts for use with built-in regression can be automatically generated from `history -t`
Usable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd.
+
+Version 0.9.0+ of cmd2 supports Python 3.4+ only. If you wish to use cmd2 with Python 2.7, then
+please install version 0.8.x.
"""
CLASSIFIERS = list(filter(None, map(str.strip,
@@ -54,7 +57,6 @@ Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
-Programming Language :: Python :: Implementation :: PyPy3
Topic :: Software Development :: Libraries :: Python Modules
""".splitlines())))