conf.py

 1# -*- coding: utf-8 -*-
 2
 3# Default settings
 4project = 'Test Builds'
 5extensions = [
 6    # Read the Docs flyout and extras
 7    'readthedocs_ext.readthedocs',
 8
 9    'sphinx_autorun',
10    'sphinx_simplepdf',
11]
12
13latex_engine = 'xelatex'  # allow us to build Unicode chars
14
15
16# Include all your settings here
17html_theme = 'sphinx_rtd_theme'
18html_static_path = ['_static']