diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-02-05 11:55:39 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-02-05 11:55:39 -0500 |
commit | ce71e89c1d01e03df7abba3396d9445657ad04d9 (patch) | |
tree | e969ca29823c4eaf9d301b8c1518d8b9e87d99aa /setup.py | |
parent | 59bd32f5d4d2b04522b54b0a042d2d69fc7ed710 (diff) | |
download | cmd2-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-x | setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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( |