Back to home page

sPhenix code displayed by LXR

 
 

    


Warning, /JETSCAPE/external_packages/trento/doc/conf.py.in is written in an unsupported language. File is not indexed.

0001 # -*- coding: utf-8 -*-
0002 
0003 import sphinx_rtd_theme
0004 
0005 project = 'trento'
0006 version = release = '@PROJECT_VERSION@'
0007 copyright = '2015 Jonah E. Bernhard, J. Scott Moreland, Steffen A. Bass'
0008 
0009 extensions = ['breathe', 'sphinx.ext.mathjax']
0010 breathe_projects = {project: '@CMAKE_CURRENT_BINARY_DIR@/doxyxml'}
0011 breathe_default_project = project
0012 breathe_implementation_filename_extensions = ['.cxx']
0013 
0014 source_suffix = '.rst'
0015 master_doc = 'index'
0016 templates_path = ['@CMAKE_CURRENT_SOURCE_DIR@/_templates']
0017 
0018 primary_domain = 'cpp'
0019 highlight_language = 'python'
0020 default_role = 'math'
0021 pygments_style = 'sphinx'
0022 
0023 html_domain_indices = False
0024 html_use_index = False
0025 html_static_path = ['@CMAKE_CURRENT_SOURCE_DIR@/_static']
0026 html_favicon = '@CMAKE_CURRENT_SOURCE_DIR@/_static/favicon.png'
0027 
0028 html_theme = 'sphinx_rtd_theme'
0029 html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
0030 html_context = dict(
0031     display_github=True,
0032     github_user='Duke-QCD',
0033     github_repo='trento',
0034     github_version='master',
0035     conf_py_path='/doc/',
0036     source_suffix = source_suffix,
0037 )