From 5daabd23cfd13662e74ce8d069204882eb1fbad9 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Fri, 15 Jan 2016 23:41:06 -0500 Subject: Initial reST documentation using Sphinx. --- common/sphinx_rtd_theme/__init__.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 common/sphinx_rtd_theme/__init__.py (limited to 'common/sphinx_rtd_theme/__init__.py') diff --git a/common/sphinx_rtd_theme/__init__.py b/common/sphinx_rtd_theme/__init__.py new file mode 100644 index 0000000..88ddcce --- /dev/null +++ b/common/sphinx_rtd_theme/__init__.py @@ -0,0 +1,17 @@ +"""Sphinx ReadTheDocs theme. + +From https://github.com/ryan-roemer/sphinx-bootstrap-theme. + +""" +import os + +VERSION = (0, 1, 9) + +__version__ = ".".join(str(v) for v in VERSION) +__version_full__ = __version__ + + +def get_html_theme_path(): + """Return list of HTML theme paths.""" + cur_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) + return cur_dir -- cgit v1.2.3