mirror of
https://github.com/triqs/dft_tools
synced 2024-11-18 12:03:50 +01:00
44 lines
1.7 KiB
Python
44 lines
1.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# TRIQS documentation build configuration file
|
|
|
|
import sys
|
|
sys.path.insert(0, "@TRIQS_SPHINXEXT_PATH@/autorun")
|
|
sys.path.insert(0, "@TRIQS_SPHINXEXT_PATH@/numpydoc")
|
|
|
|
extensions = ['sphinx.ext.autodoc',
|
|
'sphinx.ext.mathjax',
|
|
'sphinx.ext.intersphinx',
|
|
'sphinx.ext.doctest',
|
|
'sphinx.ext.todo',
|
|
'sphinx.ext.viewcode',
|
|
'sphinx.ext.autosummary',
|
|
'numpydoc',
|
|
'plot_directive',
|
|
'autorun']
|
|
|
|
source_suffix = '.rst'
|
|
|
|
project = 'APP4TRIQS - An example triqs application'
|
|
copyright = '2017-2018 N. Wentzell, O. Parcollet 2018-2019 The Simons Foundation, authors: N. Wentzell, D. Simons, H. Strand, O. Parcollet'
|
|
version = '@PROJECT_VERSION@'
|
|
|
|
mathjax_path = "@TRIQS_MATHJAX_PATH@/MathJax.js?config=default"
|
|
templates_path = ['@PROJECT_SOURCE_DIR@/doc/_templates']
|
|
|
|
html_theme = 'triqs'
|
|
html_theme_path = ['@TRIQS_THEMES_PATH@']
|
|
html_show_sphinx = False
|
|
html_context = {'header_title': 'app4triqs',
|
|
'header_subtitle': 'An example application using cpp2py and <a class="triqs" style="font-size: 12px" href="https://triqs.github.io">TRIQS</a>',
|
|
'header_links': [['Install', 'install'],
|
|
['Documentation', 'documentation'],
|
|
['Issues', 'issues'],
|
|
['About app4triqs', 'about']]}
|
|
html_static_path = ['@PROJECT_SOURCE_DIR@/doc/_static']
|
|
html_sidebars = {'index': ['sideb.html', 'searchbox.html']}
|
|
|
|
htmlhelp_basename = 'APP4TRIQSdoc'
|
|
|
|
intersphinx_mapping = {'python': ('http://docs.python.org/2.7', None), 'triqslibs': ('https://triqs.github.io/triqs/latest', None)}
|