-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
conf.py
43 lines (36 loc) · 970 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
40
41
42
43
# -*- coding: utf-8 -*-
import sys
import os
sys.path.insert(0, os.path.abspath("../../mlms/"))
project = 'ml-ms'
copyright = '- Wei MEI.'
author = 'nickcafferry-wei_mei'
version = '0.1.0'
release = ''
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'
language = 'English'
html_search_language = 'English'
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'remain']
pygments_style = 'default'
html_static_path = ['assets']
html_theme = 'sphinx_rtd_theme'
html_favicon = 'GCC.png'
html_logo = 'GCC.png'
html_theme_options = {
'logo_only': False,
'style_nav_header_background': '#343131',
}