Python: add Sphinx doc project
[babeltrace.git] / doc / bindings / python / source / _themes / sphinx_rtd_theme / __init__.py
CommitLineData
4f5f37d9
PP
1"""Sphinx ReadTheDocs theme.
2
3From https://github.com/ryan-roemer/sphinx-bootstrap-theme.
4
5"""
6import os
7
8VERSION = (0, 1, 5)
9
10__version__ = ".".join(str(v) for v in VERSION)
11__version_full__ = __version__
12
13
14def get_html_theme_path():
15 """Return list of HTML theme paths."""
16 cur_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
17 return cur_dir
This page took 0.023388 seconds and 4 git commands to generate.