summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/requirements.txt1
-rwxr-xr-xsetup.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/docs/requirements.txt b/docs/requirements.txt
new file mode 100644
index 00000000..210dfec5
--- /dev/null
+++ b/docs/requirements.txt
@@ -0,0 +1 @@
+pyparsing
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",