Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add autodoxy, a sphinx extension heavily inspired from autodoc_doxygen
[simgrid.git] / docs / source / conf.py
1 # -*- coding: utf-8 -*-
2 #
3 # Configuration file for the Sphinx documentation builder.
4 #
5 # This file does only contain a selection of the most common options. For a
6 # full list see the documentation:
7 # http://www.sphinx-doc.org/en/master/config
8
9 # -- Path setup --------------------------------------------------------------
10
11 # If extensions (or modules to document with autodoc) are in another directory,
12 # add these directories to sys.path here. If the directory is relative to the
13 # documentation root, use os.path.abspath to make it absolute, like shown here.
14 #
15 import os
16 import subprocess
17
18 # Search for our extensions too
19 import sys
20 sys.path.append(os.path.abspath('_ext'))
21
22 # -- Run doxygen on readthedocs.org ------------------------------------------
23
24 read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'
25
26 if read_the_docs_build:
27     subprocess.call('pwd', shell=True) # should be in docs/source
28     subprocess.call('doxygen', shell=True)
29     subprocess.call('javasphinx-apidoc --force -o java/ ../../src/bindings/java/org/simgrid/msg', shell=True)
30     subprocess.call('rm java/packages.rst', shell=True)
31
32 # -- Project information -----------------------------------------------------
33
34 project = u'SimGrid'
35 copyright = u'2002-2019, The SimGrid Team'
36 author = u'The SimGrid Team'
37
38 # The short X.Y version
39 version = u'3.24.1'
40
41 # -- General configuration ---------------------------------------------------
42
43 # If your documentation needs a minimal Sphinx version, state it here.
44 #
45 # needs_sphinx = '1.0'
46
47 # Add any Sphinx extension module names here, as strings. They can be
48 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
49 # ones.
50 extensions = [
51     'sphinx.ext.todo',
52     'breathe',
53     'sphinx.ext.autodoc',
54     'sphinx.ext.intersphinx',
55     'sphinx.ext.autosummary',
56     'sphinx_tabs.tabs',
57     'sphinxcontrib.contentui',
58     'javasphinx',
59     'showfile',
60     'autodoxy',
61 ]
62
63 todo_include_todos = True
64
65 # Setup the breath extension
66 breathe_projects = {'simgrid': '../build/xml'}
67 breathe_default_project = "simgrid"
68
69 # Setup the autodoxy extension
70 doxygen_xml = os.path.join(os.path.dirname(__file__), "..", "build", "xml")
71
72 # For cross-ref generation
73 primary_domain = 'cpp'
74
75 # Add any paths that contain templates here, relative to this directory.
76 templates_path = ['_templates']
77
78 # The suffix(es) of source filenames.
79 # You can specify multiple suffix as a list of string: ['.rst', '.md']
80 source_suffix = '.rst'
81
82 # The master toctree document.
83 master_doc = 'index'
84
85 # The language for content autogenerated by Sphinx. Refer to documentation
86 # for a list of supported languages.
87 #
88 # This is also used if you do content translation via gettext catalogs.
89 # Usually you set "language" from the command line for these cases.
90 language = None
91
92 # List of patterns, relative to source directory, that match files and
93 # directories to ignore when looking for source files.
94 # This pattern also affects html_static_path and html_extra_path .
95 exclude_patterns = []
96
97 # The name of the Pygments (syntax highlighting) style to use.
98 pygments_style = 'sphinx'
99
100 # -- Options for HTML output -------------------------------------------------
101
102 # The theme to use for HTML and HTML Help pages.  See the documentation for
103 # a list of builtin themes.
104 #
105 html_theme = 'sphinx_rtd_theme'
106
107 # Theme options are theme-specific and customize the look and feel of a theme
108 # further.  For a list of options available for each theme, see the
109 # documentation.
110 #
111 html_theme_options = {
112     'navigation_depth': 4,
113     'sticky_navigation': True,
114     'display_version': True,
115     'includehidden': True,
116 }
117
118 # Add any paths that contain custom static files (such as style sheets) here,
119 # relative to this directory. They are copied after the builtin static files,
120 # so a file named "default.css" will overwrite the builtin "default.css".
121 # html_static_path = ['_static']
122
123 # Custom sidebar templates, must be a dictionary that maps document names
124 # to template names.
125 #
126 # The default sidebars (for documents that don't match any pattern) are
127 # defined by theme itself.  Builtin themes are using these templates by
128 # default: ``['localtoc.html', 'relations.html', 'sourcelink.html',
129 # 'searchbox.html']``.
130 #
131 # html_sidebars = {'**': ['localtoc.html', 'relations.html', 'searchbox.html']}
132
133 # -- Options for HTMLHelp output ---------------------------------------------
134
135 # Output file base name for HTML help builder.
136 htmlhelp_basename = 'SimGrid-doc'
137
138 # -- Options for GitLab integration ------------------------------------------
139
140 html_context = {
141     "display_gitlab": True,  # Integrate Gitlab
142     "gitlab_host": "framagit.org",
143     "gitlab_user": "simgrid",
144     "gitlab_repo": "simgrid",
145     "gitlab_version": "master",  # Version
146     "conf_py_path": "/docs/source/",  # Path in the checkout to the docs root
147 }