mirror of
https://github.com/triqs/dft_tools
synced 2024-11-18 20:12:53 +01:00
42 lines
1.4 KiB
Python
42 lines
1.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# TRIQS documentation build configuration file
|
|
|
|
import sys
|
|
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',
|
|
'plot_directive',
|
|
'numpydoc']
|
|
|
|
source_suffix = '.rst'
|
|
|
|
project = u'APP4TRIQS - An example triqs application'
|
|
copyright = u'2018 - The TRIQS Developers'
|
|
version = '@APP4TRIQS_VERSION'
|
|
|
|
mathjax_path = "@TRIQS_MATHJAX_PATH@/MathJax.js?config=default"
|
|
templates_path = ['@CMAKE_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 triqs',
|
|
'header_links': [['Install', 'install'],
|
|
['Documentation', 'documentation'],
|
|
['Issues', 'issues'],
|
|
['About app4triqs', 'about']]}
|
|
html_static_path = ['@CMAKE_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/master', None)}
|