summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 8270b9f6..1dff6d7a 100755
--- a/setup.py
+++ b/setup.py
@@ -57,6 +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']
setup(
name="cmd2",
@@ -73,4 +74,5 @@ setup(
keywords='command prompt console cmd',
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
+ docs_require=DOCS_REQUIRE,
)