Sha256: fcea6f9a8d20b0d630f47066ef98e9a2c786af03f21597b45e7efdd86d6ba330

Contents?: true

Size: 1.04 KB

Versions: 5

Compression:

Stored size: 1.04 KB

Contents

# -*- coding: utf-8 -*-

import guzzle_sphinx_theme
from recommonmark.parser import CommonMarkParser

# -- General configuration ------------------------------------------------
project = u'Keycard'
copyright = u'2018, Regents of the University of Michigan'
author = u'Noah Botimer'
version = u'0.2.4'
release = u'0.2.4'


extensions = ['guzzle_sphinx_theme']
templates_path = ['_templates']
master_doc = 'index'

source_parsers = {
    '.md': CommonMarkParser,
}
source_suffix = ['.rst', '.md']

language = None
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
pygments_style = 'sphinx'
todo_include_todos = False


# -- Options for HTML output ----------------------------------------------
html_theme_path = guzzle_sphinx_theme.html_theme_path()
html_theme = 'guzzle_sphinx_theme'
html_static_path = ['_static']

# Guzzle theme options (see theme.conf for more information)
html_theme_options = {
    "project_nav_name": "Keycard",
}

html_sidebars = {
    '**': [
        'logo-text.html',
        'globaltoc.html',
        'searchbox.html',
    ]
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
keycard-0.3.4 docs/conf.py
keycard-0.3.3 docs/conf.py
keycard-0.3.2 docs/conf.py
keycard-0.3.1 docs/conf.py
keycard-0.3.0 docs/conf.py