summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-07-05 08:43:57 -0400
committerGitHub <noreply@github.com>2017-07-05 08:43:57 -0400
commit4586d87d24ce3ed33d0e63743c5cbea41e7c5bc0 (patch)
tree80043fcb67967573415a4c236957a81b1bd52aea /setup.py
parentf6d9653740e9bc867011e564e74cc6ce254edb5d (diff)
parentd87e7637596764a452dbe20cf6dd64a4c02cf38c (diff)
downloadcmd2-git-4586d87d24ce3ed33d0e63743c5cbea41e7c5bc0.tar.gz
Merge pull request #172 from felixonmars/patch-1
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']