dft_tools/doc/conf.py.in

44 lines
1.7 KiB
Python
Raw Normal View History

2013-08-07 16:40:18 +02:00
# -*- coding: utf-8 -*-
#
2013-09-01 17:56:17 +02:00
# TRIQS documentation build configuration file
2013-08-07 16:40:18 +02:00
import sys
sys.path.insert(0, "@TRIQS_SPHINXEXT_PATH@/numpydoc")
2018-09-10 10:56:37 +02:00
sys.path.insert(0, "@CMAKE_BINARY_DIR@/python")
2013-09-01 17:56:17 +02:00
extensions = ['sphinx.ext.autodoc',
'sphinx.ext.mathjax',
'sphinx.ext.intersphinx',
'matplotlib.sphinxext.plot_directive',
'sphinx.ext.doctest',
'sphinx.ext.todo',
'sphinx.ext.viewcode',
'sphinx.ext.autosummary',
'numpydoc']
2013-08-07 16:40:18 +02:00
source_suffix = '.rst'
project = u'TRIQS DFTTools'
2018-12-04 15:36:52 +01:00
copyright = u'2011-2019'
2013-09-04 16:54:45 +02:00
version = '@DFT_TOOLS_VERSION@'
2013-08-07 16:40:18 +02:00
2013-09-01 17:56:17 +02:00
mathjax_path = "@TRIQS_MATHJAX_PATH@/MathJax.js?config=default"
2013-09-04 16:54:45 +02:00
templates_path = ['@CMAKE_SOURCE_DIR@/doc/_templates']
2013-08-07 16:40:18 +02:00
2013-09-01 17:56:17 +02:00
html_theme = 'triqs'
2013-08-07 16:40:18 +02:00
html_theme_path = ['@TRIQS_THEMES_PATH@']
2013-09-01 17:56:17 +02:00
html_show_sphinx = False
html_context = {'header_title': 'dft tools',
2018-05-27 02:19:47 +02:00
'header_subtitle': 'connecting <a class="triqs" style="font-size: 12px" href="http://triqs.github.io/triqs">TRIQS</a> to DFT packages',
2013-09-01 17:56:17 +02:00
'header_links': [['Install', 'install'],
['Documentation', 'documentation'],
2018-08-06 11:44:41 +02:00
['Tutorials', 'tutorials'],
2013-09-01 17:56:17 +02:00
['Issues', 'issues'],
['About DFTTools', 'about']]}
2013-09-04 16:54:45 +02:00
html_static_path = ['@CMAKE_SOURCE_DIR@/doc/_static']
html_sidebars = {'index': ['sideb.html', 'searchbox.html']}
2013-09-01 17:56:17 +02:00
htmlhelp_basename = 'TRIQSDFTToolsdoc'
2013-09-01 17:56:17 +02:00
intersphinx_mapping = {'python': ('http://docs.python.org/2.7', None), 'triqslibs': ('http://triqs.github.io/triqs/master', None), 'triqscthyb': ('https://triqs.github.io/cthyb/master', None)}