summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-02-12 13:13:31 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2017-02-12 13:13:31 -0500
commitccafc310b88a1c13c9431f764f5fbc04217c41db (patch)
treea4019edaebdef1743f1a3f95d37708c72b4bf7d2 /setup.py
parent9abc056a1be5ee5e06f6313d61e639e851797502 (diff)
downloadcmd2-git-ccafc310b88a1c13c9431f764f5fbc04217c41db.tar.gz
Adding requirements.txt to doc section to try to fix autodoc on readthedocs
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 1dff6d7a..5f9ede8a 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']
+DOCS_REQUIRE = ['sphinx', 'sphinx_rtd_theme', 'pyparsing']
setup(
name="cmd2",