summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-02-12 13:17:06 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2017-02-12 13:17:06 -0500
commit67c9cf765c794067e3a48f474665161799c3c57b (patch)
treea0156364d166c083a1e7da217ab6ae2f8649ff30 /setup.py
parentccafc310b88a1c13c9431f764f5fbc04217c41db (diff)
downloadcmd2-git-67c9cf765c794067e3a48f474665161799c3c57b.tar.gz
Add six module to requirements for building docs
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 5f9ede8a..696fc824 100755
--- a/setup.py
+++ b/setup.py
@@ -57,7 +57,7 @@ CLASSIFIERS = filter(None, map(str.strip,
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']
-DOCS_REQUIRE = ['sphinx', 'sphinx_rtd_theme', 'pyparsing']
+DOCS_REQUIRE = ['sphinx', 'sphinx_rtd_theme', 'pyparsing', 'six']
setup(
name="cmd2",