summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-02-11 16:29:56 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2017-02-11 16:29:56 -0500
commit1b64768ca042a4fbf85bafaa9cf4037e9e60fec0 (patch)
tree288ee03a6dcc7d10e9ec4be1653222e1c157d043 /setup.py
parent68240f97141b6a0b4c9b64f3bfaa8c603b3963b9 (diff)
downloadcmd2-git-1b64768ca042a4fbf85bafaa9cf4037e9e60fec0.tar.gz
docs now use the sphinx_rtd_theme.
The docs now use the custom HTML theme from Read the Docs so that when they are built locally they look the same as they will at https://cmd2.readthedocs.io/en/latest/
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,
)