blob: 7ba4d5257e258cb820c48f7bd8af0c68787ad865 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|