diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-07-05 08:43:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-05 08:43:57 -0400 |
commit | 4586d87d24ce3ed33d0e63743c5cbea41e7c5bc0 (patch) | |
tree | 80043fcb67967573415a4c236957a81b1bd52aea /setup.py | |
parent | f6d9653740e9bc867011e564e74cc6ce254edb5d (diff) | |
parent | d87e7637596764a452dbe20cf6dd64a4c02cf38c (diff) | |
download | cmd2-git-4586d87d24ce3ed33d0e63743c5cbea41e7c5bc0.tar.gz |
Merge pull request #172 from felixonmars/patch-1
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'] |