File: __init__.py

package info (click to toggle)
sphinx-bootstrap-theme 0.4.8-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 5,948 kB
  • sloc: python: 48; makefile: 8
file content (12 lines) | stat: -rw-r--r-- 290 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
"""Sphinx bootstrap theme."""
import os

VERSION = (0, 4, 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]