diff options
author | kotfu <kotfu@kotfu.net> | 2018-05-31 20:52:07 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-05-31 20:52:07 -0600 |
commit | 7e1a3053b393a182894249218fd403236d7c74d8 (patch) | |
tree | 06fc92675b35324a802bbb10192d558df7c0c47d /setup.py | |
parent | 7313fa467e6cb06e1f187dcbff2f643d13b4a0b2 (diff) | |
parent | 26c92194eaafd78100fe3aa4290e7fd67d8f3120 (diff) | |
download | cmd2-git-7e1a3053b393a182894249218fd403236d7c74d8.tar.gz |
Merge branch 'master' into plugin_functions
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ Setuptools setup file, used to install or test 'cmd2' """ from setuptools import setup -VERSION = '0.9.1' +VERSION = '0.9.2a' 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 @@ -73,7 +73,7 @@ EXTRAS_REQUIRE = { # install with 'pip install -e .[dev]' 'dev': [ 'pytest', 'pytest-cov', 'tox', 'pylint', 'sphinx', 'sphinx-rtd-theme', - 'sphinx-autobuild','invoke', 'twine', + 'sphinx-autobuild', 'invoke', 'twine>=1.11', ] } |