X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/324b1478707435efbb703b65e95bc1005b6fb520..58bb34bb3a854fb4ea3f1daf6ed3c742efb89e1d:/docs/source/conf.py diff --git a/docs/source/conf.py b/docs/source/conf.py index 56a3dd68e1..227dfcf051 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,17 +25,19 @@ read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True' if read_the_docs_build: subprocess.call('cd source; doxygen', shell=True) + subprocess.call('javasphinx-apidoc --force -o source/java/ ../src/bindings/java/org/simgrid/msg', shell=True) + subprocess.call('rm source/java/packages.rst', shell=True) # -- Project information ----------------------------------------------------- project = u'SimGrid' -copyright = u'2018, The SimGrid Team' +copyright = u'2002-2019, The SimGrid Team' author = u'The SimGrid Team' # The short X.Y version -version = u'3.21' +version = u'alpha 3.22' # The full version, including alpha/beta/rc tags -release = u'3.21' +release = u'alpha 3.22' # -- General configuration --------------------------------------------------- @@ -50,8 +52,13 @@ release = u'3.21' extensions = [ 'sphinx.ext.todo', 'breathe', - 'exhale', +# 'exhale', + 'sphinx.ext.autodoc', + 'sphinx.ext.intersphinx', +# 'sphinx.ext.napoleon', + 'sphinx.ext.autosummary', 'hidden_code_block', + 'javasphinx', ] todo_include_todos = True