| |
| |
| |
| |
| |
|
|
| from __future__ import annotations |
|
|
| import os |
| import sys |
| from datetime import datetime |
| from pathlib import Path |
|
|
| import manim |
| from manim.utils.docbuild.module_parsing import parse_module_attributes |
|
|
| |
| |
| |
| |
|
|
|
|
| sys.path.insert(0, os.path.abspath(".")) |
|
|
|
|
| |
|
|
| project = "Manim" |
| copyright = f"2020-{datetime.now().year}, The Manim Community Dev Team" |
| author = "The Manim Community Dev Team" |
|
|
|
|
| |
|
|
| |
| |
| |
| extensions = [ |
| "sphinx.ext.autodoc", |
| "sphinx_copybutton", |
| "sphinx.ext.napoleon", |
| "sphinx.ext.autosummary", |
| "sphinx.ext.doctest", |
| "sphinx.ext.extlinks", |
| "sphinx.ext.viewcode", |
| "sphinxext.opengraph", |
| "manim.utils.docbuild.manim_directive", |
| "manim.utils.docbuild.autocolor_directive", |
| "manim.utils.docbuild.autoaliasattr_directive", |
| "sphinx.ext.graphviz", |
| "sphinx.ext.inheritance_diagram", |
| "sphinxcontrib.programoutput", |
| "myst_parser", |
| "sphinx_design", |
| "sphinx_reredirects", |
| ] |
|
|
| |
| autosummary_generate = True |
|
|
| myst_enable_extensions = ["colon_fence", "amsmath", "deflist"] |
|
|
| |
| redirects = { |
| "installation/linux": "uv.html", |
| "installation/macos": "uv.html", |
| "installation/windows": "uv.html", |
| } |
|
|
| |
| ALIAS_DOCS_DICT = parse_module_attributes()[0] |
| autodoc_typehints = "description" |
| autodoc_type_aliases = { |
| alias_name: f"~manim.{module}.{alias_name}" |
| for module, module_dict in ALIAS_DOCS_DICT.items() |
| for category_dict in module_dict.values() |
| for alias_name in category_dict |
| } |
| autoclass_content = "both" |
|
|
| |
| |
| add_module_names = False |
|
|
| |
| templates_path = ["_templates"] |
|
|
| |
| napoleon_custom_sections = ["Tests", ("Test", "Tests")] |
|
|
| |
| |
| |
| html_extra_path = ["robots.txt"] |
|
|
| exclude_patterns: list[str] = [] |
|
|
| |
| |
| locale_dirs = ["../i18n/"] |
|
|
| |
| gettext_compact = False |
|
|
| |
| gettext_last_translator = "" |
| gettext_language_team = "" |
|
|
| |
|
|
| |
| |
| |
|
|
| html_theme = "furo" |
| html_favicon = str(Path("_static/favicon.ico")) |
|
|
| |
| |
| |
| html_static_path = ["_static"] |
|
|
| html_theme_options = { |
| "source_repository": "https://github.com/ManimCommunity/manim/", |
| "source_branch": "main", |
| "source_directory": "docs/source/", |
| "light_logo": "manim-logo-sidebar.svg", |
| "dark_logo": "manim-logo-sidebar-dark.svg", |
| "light_css_variables": { |
| "color-content-foreground": "#000000", |
| "color-background-primary": "#ffffff", |
| "color-background-border": "#ffffff", |
| "color-sidebar-background": "#f8f9fb", |
| "color-brand-content": "#1c00e3", |
| "color-brand-primary": "#192bd0", |
| "color-link": "#c93434", |
| "color-link--hover": "#5b0000", |
| "color-inline-code-background": "#f6f6f6;", |
| "color-foreground-secondary": "#000", |
| }, |
| "dark_css_variables": { |
| "color-content-foreground": "#ffffffd9", |
| "color-background-primary": "#131416", |
| "color-background-border": "#303335", |
| "color-sidebar-background": "#1a1c1e", |
| "color-brand-content": "#2196f3", |
| "color-brand-primary": "#007fff", |
| "color-link": "#51ba86", |
| "color-link--hover": "#9cefc6", |
| "color-inline-code-background": "#262626", |
| "color-foreground-secondary": "#ffffffd9", |
| }, |
| } |
| html_title = f"Manim Community v{manim.__version__}" |
|
|
| |
| html_css_files = ["custom.css"] |
|
|
| latex_engine = "lualatex" |
|
|
| |
| extlinks = { |
| "issue": ("https://github.com/ManimCommunity/manim/issues/%s", "#%s"), |
| "pr": ("https://github.com/ManimCommunity/manim/pull/%s", "PR #%s"), |
| "user": ("https://github.com/%s", "@%s"), |
| } |
|
|
| |
| ogp_site_name = "Manim Community | Documentation" |
| ogp_site_url = "https://docs.manim.community/" |
| ogp_social_cards = { |
| "image": "_static/logo.png", |
| } |
|
|
|
|
| |
| inheritance_graph_attrs = { |
| "concentrate": True, |
| "size": '""', |
| "splines": "ortho", |
| "nodesep": 0.1, |
| "ranksep": 0.2, |
| } |
|
|
| inheritance_node_attrs = { |
| "penwidth": 0, |
| "shape": "box", |
| "width": 0.05, |
| "height": 0.05, |
| "margin": 0.05, |
| } |
|
|
| inheritance_edge_attrs = { |
| "penwidth": 1, |
| } |
|
|
| html_js_files = ["responsiveSvg.js"] |
|
|
| graphviz_output_format = "svg" |
|
|