Spaces:
Running
Running
File size: 1,355 Bytes
dd39c08 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# Configuration file for the Sphinx documentation builder.
# -- Project information
project = "BrowserGym"
copyright = "2024, ServiceNow Research"
author = "ServiceNow Research"
version = "0.13.3"
release = version
# -- General configuration
extensions = [
"sphinx.ext.duration",
"sphinx.ext.doctest",
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"sphinx.ext.intersphinx",
"sphinx_design",
]
intersphinx_mapping = {
"python": ("https://docs.python.org/3/", None),
"sphinx": ("https://www.sphinx-doc.org/en/master/", None),
}
intersphinx_disabled_domains = ["std"]
templates_path = ["_templates"]
fixed_sidebar = True
# -- Options for HTML output
# Automatically extract typehints when specified and place them in
# descriptions of the relevant function/method.
# autodoc_typehints = "description"
# Don't show class signature with the class' name.
# autodoc_class_signature = "separated"
html_theme = "pydata_sphinx_theme"
html_theme_options = {
"show_nav_level": 2,
"navigation_depth": 2,
"show_toc_level": 2,
"icon_links": [
{
"name": "GitHub",
"url": "https://github.com/ServiceNow/BrowserGym",
"icon": "fa-brands fa-square-github",
"type": "fontawesome",
}
],
}
# -- Options for EPUB output
epub_show_urls = "footnote"
|