diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-02-12 13:17:06 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-02-12 13:17:06 -0500 |
commit | 67c9cf765c794067e3a48f474665161799c3c57b (patch) | |
tree | a0156364d166c083a1e7da217ab6ae2f8649ff30 /setup.py | |
parent | ccafc310b88a1c13c9431f764f5fbc04217c41db (diff) | |
download | cmd2-git-67c9cf765c794067e3a48f474665161799c3c57b.tar.gz |
Add six module to requirements for building docs
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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", |