odoo/doc/_themes/sphinx_bootstrap_theme/__init__.py

13 lines
290 B
Python

"""Sphinx bootstrap theme."""
import os
VERSION = (0, 3, 8)
__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(__file__))
return [cur_dir]