summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-02-05 11:55:39 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2017-02-05 11:55:39 -0500
commitce71e89c1d01e03df7abba3396d9445657ad04d9 (patch)
treee969ca29823c4eaf9d301b8c1518d8b9e87d99aa /setup.py
parent59bd32f5d4d2b04522b54b0a042d2d69fc7ed710 (diff)
downloadcmd2-git-ce71e89c1d01e03df7abba3396d9445657ad04d9.tar.gz
Fixed how the six.moves.input function is imported and used.
Also added a unit test for the cmd2.Cmd.select() method.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 14c82219..8270b9f6 100755
--- a/setup.py
+++ b/setup.py
@@ -55,6 +55,7 @@ CLASSIFIERS = filter(None, map(str.strip,
""".splitlines()))
INSTALL_REQUIRES = ['pyparsing >= 2.0.1', 'six']
+# unitest.mock was added in Python 3.3. mock is a backport of unittest.mock to all versions of Python
TESTS_REQUIRE = ['mock', 'pytest']
setup(