mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
36 lines
832 B
Python
36 lines
832 B
Python
import os
|
|
import sys
|
|
sys.path.insert(0, os.path.abspath('../../'))
|
|
|
|
|
|
project = 'manim'
|
|
copyright = '- This document has been placed in the public domain.'
|
|
author = 'TonyCrane'
|
|
|
|
release = '0.1'
|
|
|
|
extensions = [
|
|
'sphinx.ext.todo',
|
|
'sphinx.ext.githubpages',
|
|
'sphinx.ext.mathjax',
|
|
'sphinx.ext.intersphinx',
|
|
'sphinx.ext.autodoc',
|
|
'sphinx.ext.coverage',
|
|
'sphinx.ext.napoleon',
|
|
'sphinx_copybutton',
|
|
]
|
|
|
|
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_theme = 'furo' # pip install furo==2020.10.5b9
|
|
# html_favicon = '../../logo/graph.png'
|
|
html_logo = '../../logo/transparent_graph.png'
|
|
html_theme_options = {
|
|
"sidebar_hide_name": True,
|
|
}
|