summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorFelix Yan <felixonmars@archlinux.org>2017-07-04 23:53:33 -0500
committerGitHub <noreply@github.com>2017-07-04 23:53:33 -0500
commitd87e7637596764a452dbe20cf6dd64a4c02cf38c (patch)
tree80043fcb67967573415a4c236957a81b1bd52aea /setup.py
parentf6d9653740e9bc867011e564e74cc6ce254edb5d (diff)
downloadcmd2-git-d87e7637596764a452dbe20cf6dd64a4c02cf38c.tar.gz
Fix a typo: unitest -> unittest
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 85d04046..79cb18be 100755
--- a/setup.py
+++ b/setup.py
@@ -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']