Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/doc/en/introspect/conf.py
4077 views
1
# -*- coding: utf-8 -*-
2
# Sage introspection build configuration file.
3
# See sage.server.notebook.cell.set_introspect_html() for details.
4
5
import sys, os
6
sys.path.append(os.environ['SAGE_DOC'])
7
from common.conf import *
8
9
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.jsmath', 'sphinx.ext.todo',
10
'sphinx.ext.extlinks']
11
12
templates_path = ['templates']
13
html_static_path = ['static']
14
15
html_use_modindex = False
16
html_use_index = False
17
html_split_index = False
18
html_copy_source = False
19
20
todo_include_todos = True
21
22