__init__.py 371 B

1234567891011121314151617
  1. """Sphinx ReadTheDocs theme.
  2. From https://github.com/ryan-roemer/sphinx-bootstrap-theme.
  3. """
  4. import os
  5. VERSION = (0, 1, 8)
  6. __version__ = ".".join(str(v) for v in VERSION)
  7. __version_full__ = __version__
  8. def get_html_theme_path():
  9. """Return list of HTML theme paths."""
  10. cur_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
  11. return cur_dir