diff options
author | kotfu <kotfu@kotfu.net> | 2018-05-28 22:21:45 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-05-28 22:21:45 -0600 |
commit | b0965f1bb19fb2e8041abeb4b27eeb89f450a48a (patch) | |
tree | e5b3a4987b5dfdd22ce7f45a6373dc0b10e88442 /setup.py | |
parent | 4b87d49f07d880bd9536e3193f0f123b9bef0fad (diff) | |
parent | 7000604ac826a637539c388ad8f5ff8a3ebfc419 (diff) | |
download | cmd2-git-b0965f1bb19fb2e8041abeb4b27eeb89f450a48a.tar.gz |
Merge branch 'master' into plugin_functions
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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()))) @@ -71,6 +73,7 @@ EXTRAS_REQUIRE = { # install with 'pip install -e .[dev]' 'dev': [ 'pytest', 'pytest-cov', 'tox', 'pylint', 'sphinx', 'sphinx-rtd-theme', + 'sphinx-autobuild','invoke', 'twine', ] } |