-
Notifications
You must be signed in to change notification settings - Fork 61
/
conf.py
64 lines (50 loc) · 1.7 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import sys
import guzzle_sphinx_theme
sys.path.insert(0, '..')
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.mathjax',
'numpydoc',
'sphinx.ext.autosummary',
'guzzle_sphinx_theme'
]
napoleon_google_docstring = False
napoleon_numpy_docstring = True
autosummary_generate = True
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = u'bandicoot'
copyright = u'2014-2020, Yves-Alexandre de Montjoye, Luc Rocher, Alex Pentland'
version = '0.6'
release = '0.6.0'
exclude_patterns = ['_build']
pygments_style = 'sphinx'
# -- Options for HTML output ----------------------------------------------
html_translator_class = 'guzzle_sphinx_theme.HTMLTranslator'
html_theme = 'guzzle_sphinx_theme'
html_theme_options = {
"project_nav_name": "bandicoot",
"google_analytics_account": "UA-11680375-10"
}
html_theme_path = guzzle_sphinx_theme.html_theme_path()
html_static_path = ['_static']
htmlhelp_basename = 'bandicootdoc'
# -- Options for LaTeX output ---------------------------------------------
latex_elements = {}
latex_documents = [
('index', 'bandicoot.tex', u'bandicoot Documentation',
u'Yves-Alexandre de Montjoye, Luc Rocher, Alex Pentland', 'manual'),
]
# -- Options for manual page output ---------------------------------------
man_pages = [
('index', 'bandicoot', u'bandicoot Documentation',
[u'Yves-Alexandre de Montjoye, Luc Rocher, Alex Pentland'], 1)
]
# -- Options for Texinfo output -------------------------------------------
texinfo_documents = [
('index', 'bandicoot', u'bandicoot Documentation',
u'Yves-Alexandre de Montjoye, Luc Rocher, Alex Pentland',
'bandicoot', 'A python toolbox for mobile phone metadata',
'Miscellaneous'),
]