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
|
|
|
|
2016-02-12 10:58:11 +01:00
|
|
|
import sys
|
|
|
|
sys.path.insert(0, "@TRIQS_SPHINXEXT_PATH@/numpydoc")
|
|
|
|
|
2013-09-01 17:56:17 +02:00
|
|
|
extensions = ['sphinx.ext.autodoc',
|
|
|
|
'sphinx.ext.mathjax',
|
|
|
|
'sphinx.ext.intersphinx',
|
2015-03-12 00:01:12 +01:00
|
|
|
'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'
|
|
|
|
|
2016-07-08 12:04:31 +02:00
|
|
|
project = u'TRIQS DFTTools'
|
2013-09-01 17:56:17 +02:00
|
|
|
copyright = u'2011-2013, M. Aichhorn, L. Pourovskii, V. Vildosola, C. Martins'
|
2013-09-04 16:54:45 +02:00
|
|
|
version = '@DFT_TOOLS_VERSION@'
|
|
|
|
release = '@DFT_TOOLS_RELEASE@'
|
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
|
2016-07-08 12:04:31 +02:00
|
|
|
html_context = {'header_title': 'dft tools',
|
2016-09-13 15:20:21 +02:00
|
|
|
'header_subtitle': 'connecting <a class="triqs" style="font-size: 12px" href="http://triqs.ipht.cnrs.fr/1.x">TRIQS</a> to DFT packages',
|
2013-09-01 17:56:17 +02:00
|
|
|
'header_links': [['Install', 'install'],
|
|
|
|
['Documentation', 'documentation'],
|
|
|
|
['Issues', 'issues'],
|
2016-07-08 12:04:31 +02:00
|
|
|
['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'
|
|
|
|
|
2016-09-13 15:20:21 +02:00
|
|
|
intersphinx_mapping = {'python': ('http://docs.python.org/2.7', None), 'triqslibs': ('http://triqs.ipht.cnrs.fr/1.x', None), 'triqscthyb': ('https://triqs.ipht.cnrs.fr/1.x/applications/cthyb/', None)}
|