mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
51 lines
1.4 KiB
Python
51 lines
1.4 KiB
Python
![]() |
# -- 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 = 'manim'
|
||
|
copyright = '2021, TonyCrane'
|
||
|
author = 'TonyCrane'
|
||
|
|
||
|
release = '0.1'
|
||
|
|
||
|
|
||
|
# -- 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.todo',
|
||
|
'sphinx.ext.githubpages',
|
||
|
'sphinx.ext.mathjax',
|
||
|
'sphinx.ext.intersphinx',
|
||
|
'sphinx.ext.autodoc',
|
||
|
'sphinx.ext.coverage',
|
||
|
'sphinx.ext.napoleon',
|
||
|
'sphinx_rtd_theme'
|
||
|
]
|
||
|
|
||
|
autoclass_content = 'both'
|
||
|
mathjax_path = "https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"
|
||
|
|
||
|
templates_path = ['_templates']
|
||
|
source_suffix = '.rst'
|
||
|
master_doc = 'index'
|
||
|
pygments_style = 'default'
|
||
|
|
||
|
# html_static_path = ['assets']
|
||
|
html_theme = 'sphinx_rtd_theme'
|
||
|
# html_favicon = '../../logo/graph.png'
|
||
|
html_logo = '../../logo/transparent_graph.png'
|
||
|
html_theme_options = {
|
||
|
'logo_only': True,
|
||
|
'style_nav_header_background': '#343131',
|
||
|
}
|