diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-02-11 16:29:56 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-02-11 16:29:56 -0500 |
commit | 1b64768ca042a4fbf85bafaa9cf4037e9e60fec0 (patch) | |
tree | 288ee03a6dcc7d10e9ec4be1653222e1c157d043 /setup.py | |
parent | 68240f97141b6a0b4c9b64f3bfaa8c603b3963b9 (diff) | |
download | cmd2-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-x | setup.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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, ) |