-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
56 lines (46 loc) · 1.39 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
# -*- coding: utf-8 -*-
import sys
import os
sys.path.insert(0, os.path.abspath("../../manim/"))
project = u'Fechii-Gas Chromatography Mass Spectrometry'
copyright = u'- Wei MEI (Nick Cafferry)'
author = u'Wei MEI'
version = '1.0'
release = '1.0'
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',
'sphinx.ext.graphviz',
'sphinx.ext.viewcode',
'sphinx.ext.inheritance_diagram'
]
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 = 'Chinese'
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'remain']
pygments_style = 'default'
html_static_path = ['assets']
html_theme = 'haiku'
html_logo = 'GCC.svg'
html_favicon = 'GCC.svg'
html_theme_options = {
'linkcolor': "red",
"external_links": [
{"url": "https://psspred.readthedocs.io/en/latest/README.html?badge=latest", "name": "PSSpred"}
],
"github_url": "https://github.com/nickcafferry/PSSpred",
}
html_sidebars = {
'**': ['globaltoc.html', 'sourcelink.html', 'searchbox.html'],
'using/windows': ['windowssidebar.html', 'searchbox.html','playground.html'],
}