conf.py

Sphinx configuration file used to build this docs:

conf.py
 1# -*- coding: utf-8 -*-
 2
 3# Default settings
 4project = 'Test Builds'
 5extensions = [
 6    'sphinx_autorun',
 7    'notfound.extension',
 8    'hoverxref.extension',
 9    'sphinx_js',
10    'sphinx_tabs.tabs',
11]
12
13latex_engine = 'xelatex'  # allow us to build Unicode chars
14
15autosectionlabel_prefix_document = True
16hoverxref_auto_ref = True
17hoverxref_roles = [
18    'term',
19]
20
21# Include all your settings here
22html_theme = 'sphinx_rtd_theme'
23
24js_source_path = '../src/'
25html_extra_path = ['static']
26
27
28
29