-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathconf.py
38 lines (32 loc) · 785 Bytes
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- coding: utf-8 -*-
import sys
import os
sys.path.insert(0, os.path.abspath('..'))
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.intersphinx',
'sphinx.ext.todo',
'sphinx.ext.coverage',
'sphinx.ext.imgmath',
'sphinx.ext.viewcode',
]
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = u'The Architect'
copyright = u'2018, Aleš Komárek'
version = '0.2'
release = '0.2.0'
exclude_patterns = []
pygments_style = 'sphinx'
html_theme = "sphinx_rtd_theme"
html_theme_options = {
'collapse_navigation': False,
'display_version': False,
}
latex_elements = {}
latex_documents = [
('index', 'the_architect.tex', u'The Architect Documentation',
u'The Architect Team', 'manual'),
]