github.com/jbking/gohan@v0.0.0-20151217002006-b41ccf1c2a96/docs/source/_templates/cloudwan/__init__.py (about)

     1  """Sphinx Cloudwan theme.
     2  
     3  From http://docs.readthedocs.org/en/latest/theme.html.
     4  
     5  """
     6  import os
     7  
     8  VERSION = (0, 1, 9)
     9  
    10  __version__ = ".".join(str(v) for v in VERSION)
    11  __version_full__ = __version__
    12  
    13  
    14  def get_html_theme_path():
    15      """Return list of HTML theme paths."""
    16      cur_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
    17      return cur_dir