Files
Gymnasium/docs/conf.py

127 lines
3.8 KiB
Python
Raw Normal View History

2022-09-13 20:27:34 +01:00
# Configuration file for the Sphinx documentation builder.
#
# This file only contains a selection of the most common options. For a full
# list see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- 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('.'))
# -- Project information -----------------------------------------------------
import os
2023-01-11 14:00:51 -06:00
import re
2022-10-03 16:00:31 +01:00
from typing import Any, Dict
2023-01-11 14:00:51 -06:00
import sphinx_gallery.gen_rst
2022-09-13 20:27:34 +01:00
import gymnasium
2022-09-13 20:27:34 +01:00
project = "Gymnasium"
2022-10-23 10:13:05 +01:00
copyright = "2022 Farama Foundation"
2022-09-13 20:27:34 +01:00
author = "Farama Foundation"
# The full version, including alpha/beta/rc tags
release = gymnasium.__version__
# -- 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.napoleon",
"sphinx.ext.doctest",
"sphinx.ext.autodoc",
"sphinx.ext.githubpages",
"myst_parser",
2022-10-21 16:36:36 +01:00
"furo.gen_tutorials",
2023-01-11 14:00:51 -06:00
"sphinx_gallery.gen_gallery",
2023-01-11 10:15:29 -06:00
"sphinx_github_changelog",
2022-09-13 20:27:34 +01:00
]
# 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.
2023-01-11 14:00:51 -06:00
exclude_patterns = ["tutorials/README.rst"]
2022-09-13 20:27:34 +01:00
# Napoleon settings
napoleon_use_ivar = True
napoleon_use_admonition_for_references = True
# See https://github.com/sphinx-doc/sphinx/issues/9119
napoleon_custom_sections = [("Returns", "params_style")]
# Autodoc
autoclass_content = "both"
autodoc_preserve_defaults = True
2022-09-13 20:27:34 +01:00
# -- Options for HTML output -------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = "furo"
html_title = "Gymnasium Documentation"
html_baseurl = "https://gymnasium.farama.org"
html_copy_source = False
html_favicon = "_static/img/favicon.png"
html_theme_options = {
"light_logo": "img/gymnasium_black.svg",
"dark_logo": "img/gymnasium_white.svg",
2022-10-13 11:51:56 +01:00
"gtag": "G-6H9C8TWXZ8",
"description": "A standard API for reinforcement learning and a diverse set of reference environments (formerly Gym)",
"image": "img/gymnasium-github.png",
2022-10-25 11:38:43 +01:00
"versioning": True,
2022-09-13 20:27:34 +01:00
}
2022-10-03 16:00:31 +01:00
html_context: Dict[str, Any] = {}
html_context["conf_py_path"] = "/docs/"
html_context["display_github"] = False
2022-10-03 16:00:31 +01:00
html_context["github_user"] = "Farama-Foundation"
html_context["github_repo"] = "Gymnasium"
2022-10-09 00:39:35 +01:00
html_context["github_version"] = "main"
2022-10-03 16:00:31 +01:00
html_context["slug"] = "gymnasium"
2022-09-13 20:27:34 +01:00
html_static_path = ["_static"]
2022-10-03 16:00:31 +01:00
html_css_files = []
# -- Generate Tutorials -------------------------------------------------
2023-01-11 14:00:51 -06:00
sphinx_gallery.gen_rst.EXAMPLE_HEADER = """
.. DO NOT EDIT.
.. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY.
.. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE:
.. "{0}"
.. LINE NUMBERS ARE GIVEN BELOW.
.. rst-class:: sphx-glr-example-title
.. _sphx_glr_{1}:
"""
sphinx_gallery_conf = {
"ignore_pattern": r"__init__\.py",
"examples_dirs": "./tutorials",
"gallery_dirs": "./tutorials",
"show_signature": False,
"show_memory": False,
"min_reported_time": float("inf"),
"filename_pattern": f"{re.escape(os.sep)}run_",
"default_thumb_file": "_static/img/gymnasium-github.png",
}
2023-01-11 10:15:29 -06:00
# -- Generate Changelog -------------------------------------------------
sphinx_github_changelog_token = os.environ.get("SPHINX_GITHUB_CHANGELOG_TOKEN")