# Configuration file for the Sphinx documentation builder. # # For the full list of built-in configuration values, see the documentation: # https://www.sphinx-doc.org/en/master/usage/configuration.html # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information project = 'movis' copyright = '2023, Masaki Saito' author = 'Masaki Saito' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration extensions = [ "sphinx.ext.autodoc", "sphinx.ext.autosummary", "sphinx_copybutton", "sphinx.ext.githubpages", "sphinx.ext.intersphinx", "sphinx.ext.viewcode", ] templates_path = ['_templates'] exclude_patterns: list[str] = [] source_suffix = ".rst" master_doc = "index" autosummary_generate = True # -- Options for HTML output ------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output html_theme = 'pydata_sphinx_theme' html_static_path = ['_static'] intersphinx_mapping = { "python": ("https://docs.python.org/3", None), "matplotlib": ("https://matplotlib.org/stable", None), "numpy": ("https://numpy.org/doc/stable", None), "scipy": ("https://docs.scipy.org/doc/scipy", None), "torch": ("https://pytorch.org/docs/stable", None), "pandas": ("https://pandas.pydata.org/docs", None), }