diff --git a/python_bindings/source/conf.py b/python_bindings/source/conf.py index f76869e47..fd0f137ea 100644 --- a/python_bindings/source/conf.py +++ b/python_bindings/source/conf.py @@ -4,29 +4,18 @@ # list see the documentation: # http://www.sphinx-doc.org/en/master/config -# -- Path setup -------------------------------------------------------------- - -# If extensions (or modules to document with autodoc) are in another directory, -# add these directories to sys.path here. If the directory is relative to the -# documentation root, use os.path.abspath to make it absolute, like shown here. -# import os import sys -sys.path.insert(0, os.path.abspath('../../build/lib/')) +# -- Path setup -------------------------------------------------------------- +sys.path.insert(0, os.path.abspath('../../build/lib/')) # -- Project information ----------------------------------------------------- - project = 'TACO Python API Reference' copyright = '2022 TACO Development Team' author = 'TACO Development Team' - # -- General configuration --------------------------------------------------- - -# Add any Sphinx extension module names here, as strings. They can be -# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom -# ones. extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.autosummary', @@ -34,44 +23,21 @@ 'sphinx.ext.intersphinx', 'sphinx.ext.mathjax', 'sphinx.ext.ifconfig', - 'numpydoc', - + 'numpydoc' ] - -# Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -# This pattern also affects html_static_path and html_extra_path. -exclude_patterns = [] - autosummary_generate = True -# -- Options for HTML output ------------------------------------------------- -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -# +# -- Options for HTML output ------------------------------------------------- html_theme = 'sphinx_rtd_theme' - -# Add any paths that contain custom static files (such as style sheets) here, -# relative to this directory. They are copied after the builtin static files, -# so a file named "default.css" will overwrite the builtin "default.css". -# html_static_path = ['_static'] - html_title = 'TACO Python API Reference' - # -- Extension configuration ------------------------------------------------- - - numpydoc_attributes_as_param_list = True numpydoc_class_members_toctree = False numpydoc_show_class_members = False - # -- Options for intersphinx extension --------------------------------------- - -# Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = {'https://docs.python.org/': None}