nghttp2/doc/_themes/sphinx_rtd_theme/__init__.py

18 lines
371 B
Python
Raw Normal View History

2013-12-06 17:27:56 +01:00
"""Sphinx ReadTheDocs theme.
From https://github.com/ryan-roemer/sphinx-bootstrap-theme.
"""
import os
2015-10-24 12:30:51 +02:00
VERSION = (0, 1, 9)
2013-12-06 17:27:56 +01:00
__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