X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=doc%2Fbindings%2Fpython%2Fsource%2F_themes%2Fsphinx_rtd_theme%2F__init__.py;fp=doc%2Fbindings%2Fpython%2Fsource%2F_themes%2Fsphinx_rtd_theme%2F__init__.py;h=1440863d68087c7eb94d1091ea0faed7532c16c0;hb=4f5f37d9512a7fa57b5f98a973b009e47e9f4963;hp=0000000000000000000000000000000000000000;hpb=b3df7a8f0a8bc192cb7f35c7bc3434b216d874c8;p=babeltrace.git diff --git a/doc/bindings/python/source/_themes/sphinx_rtd_theme/__init__.py b/doc/bindings/python/source/_themes/sphinx_rtd_theme/__init__.py new file mode 100644 index 00000000..1440863d --- /dev/null +++ b/doc/bindings/python/source/_themes/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, 5) + +__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