summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorkotfu <jared@kotfu.net>2018-05-31 20:49:08 -0600
committerGitHub <noreply@github.com>2018-05-31 20:49:08 -0600
commit26c92194eaafd78100fe3aa4290e7fd67d8f3120 (patch)
tree4a6f91e376e703e44488b97a97d0756544831ec9 /setup.py
parent7000604ac826a637539c388ad8f5ff8a3ebfc419 (diff)
parent9b63c7f6c9afea779793166351bac10c701d723c (diff)
downloadcmd2-git-26c92194eaafd78100fe3aa4290e7fd67d8f3120.tar.gz
Merge pull request #424 from python-cmd2/twine_test
Require minimum twine version for PyPI upload
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 0127ae5b..59c53b68 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.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',
]
}