From 1b64768ca042a4fbf85bafaa9cf4037e9e60fec0 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Sat, 11 Feb 2017 16:29:56 -0500 Subject: 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/ --- setup.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'setup.py') 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, ) -- cgit v1.2.1