diff options
Diffstat (limited to 'sphinx_rtd_theme/__init__.py')
| -rw-r--r-- | sphinx_rtd_theme/__init__.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sphinx_rtd_theme/__init__.py b/sphinx_rtd_theme/__init__.py new file mode 100644 index 00000000..7ba4d525 --- /dev/null +++ b/sphinx_rtd_theme/__init__.py @@ -0,0 +1,15 @@ +"""Sphinx ReadTheDocs theme. + +From https://github.com/ryan-roemer/sphinx-bootstrap-theme. + +""" +import os + +__version__ = '0.1.10-alpha' +__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 |
