diff options
author | Felix Yan <felixonmars@archlinux.org> | 2017-07-04 23:53:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-04 23:53:33 -0500 |
commit | d87e7637596764a452dbe20cf6dd64a4c02cf38c (patch) | |
tree | 80043fcb67967573415a4c236957a81b1bd52aea /setup.py | |
parent | f6d9653740e9bc867011e564e74cc6ce254edb5d (diff) | |
download | cmd2-git-d87e7637596764a452dbe20cf6dd64a4c02cf38c.tar.gz |
Fix a typo: unitest -> unittest
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ Topic :: Software Development :: Libraries :: Python Modules """.splitlines()))) INSTALL_REQUIRES = ['pyparsing >= 2.0.1', 'pyperclip', 'six'] -# unitest.mock was added in Python 3.3. mock is a backport of unittest.mock to all versions of Python +# unittest.mock was added in Python 3.3. mock is a backport of unittest.mock to all versions of Python TESTS_REQUIRE = ['mock', 'pytest'] DOCS_REQUIRE = ['sphinx', 'sphinx_rtd_theme', 'pyparsing', 'pyperclip', 'six'] |