"...reference/include/ReferenceFreeEnergyKernelFactory.h" did not exist on "012b28e6e9d3a3848789b7cb3ca055052528fb36"
conf.py 1.01 KB
Newer Older
Robert T. McGibbon's avatar
Robert T. McGibbon committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import sys
import os

extensions = ['sphinx.ext.mathjax','sphinx.ext.autosummary',
              'sphinx.ext.autodoc', 'sphinxcontrib.lunrsearch',
              'sphinxcontrib.autodoc_doxygen']

autosummary_generate = True
autodoc_member_order = 'bysource'

source_suffix = '.rst'
master_doc = 'index'

project = u'OpenMM'
copyright = u'2015, Stanford University and the Authors'

version = '@OPENMM_MAJOR_VERSION@.@OPENMM_MINOR_VERSION@'
release = '@OPENMM_MAJOR_VERSION@.@OPENMM_MINOR_VERSION@'

exclude_patterns = ['_build', '_templates']
html_static_path = ['_static']
templates_path = ['_templates']

pygments_style = 'sphinx'

html_theme = "alabaster"
html_theme_options = {
    'description': "High performance molecular simulation on GPUs",
    'github_button': False,
    # 'github_user': 'pandegroup',
    # 'github_repo': 'openmm',
    'logo_name': False,
    'logo': 'logo.png',
}
html_sidebars = {
    '**': [
        'about.html',
        'searchbox.html',
        'navigation.html',
    ]
}

Robert T. McGibbon's avatar
Robert T. McGibbon committed
43
doxygen_xml = "doxygen/xml"