conf.py 607 字节
Newer Older
L
Liangliang He 已提交
1 2 3 4 5 6 7 8
# -*- coding: utf-8 -*-
#
# Configuration file for the Sphinx documentation builder.
#

import recommonmark.parser
import sphinx_rtd_theme

L
Liangliang He 已提交
9
project = u'Mobile AI Compute Engine (MACE)'
L
Liangliang He 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
author = u'%s Developers' % project
copyright = u'2018, %s' % author

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

master_doc = 'index'

exclude_patterns = [u'_build', 'Thumbs.db', '.DS_Store']

pygments_style = 'sphinx'

html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
html_static_path = ['_static']
L
liuqi 已提交
27
smartquotes = False