-
Notifications
You must be signed in to change notification settings - Fork 1
/
conf.py
39 lines (30 loc) · 828 Bytes
/
conf.py
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
import os
import sys
sys.path.insert(0, os.path.abspath('.'))
master_doc = "index"
project = 'DynaMapp'
copyright = '2024, Wissem CHIHA'
author = 'Wissem CHIHA'
release = '0.1.0'
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.viewcode',
'sphinx.ext.todo',
'sphinx.ext.intersphinx',
'sphinx.ext.autosummary',
'myst_parser',
'sphinx.ext.mathjax',
'sphinx.ext.todo'
]
myst_enable_extensions = [
"dollarmath",
"deflist",
]
autodoc_mock_imports = ['pinocchio', 'seaborn', 'numpy', 'matplotlib', 'pandas', 'scipy']
templates_path = ['build/html/_templates']
exclude_patterns = ['Thumbs.db', '.DS_Store']
language = 'python'
html_theme = 'sphinx_rtd_theme'
html_static_path = ['_static']
source_suffix = {'.rst': 'restructuredtext', '.md': 'markdown'}
todo_include_todos = True