blob: bc23583b373a61fbde05b4bf3cfd6f1826c240fa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import sphinx_rtd_theme
extensions = ['sphinx.ext.imgmath',
'sphinx.ext.graphviz',
'sphinx.ext.todo']
project = 'Hatter'
version = '0.0.1'
copyright = '2017, Božo Kopić'
master_doc = 'index'
html_theme = 'sphinx_rtd_theme'
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
html_use_index = False
html_show_sourcelink = False
html_show_sphinx = False
html_sidebars = {
'**': ['globaltoc.html', 'relations.html']}
todo_include_todos = True
|