-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathconf.py
More file actions
50 lines (41 loc) · 1.17 KB
/
conf.py
File metadata and controls
50 lines (41 loc) · 1.17 KB
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
import os
import sys
import feos
sys.path.append(os.path.abspath(os.path.join(__file__, "../..")))
sys.path.insert(0, os.path.abspath('.'))
# -- Project information -----------------------------------------------------
project = 'feos'
copyright = '2022, Gernot Bauer, Philipp Rehner'
author = 'Gernot Bauer, Philipp Rehner'
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.doctest',
'sphinx.ext.mathjax',
'sphinx.ext.githubpages',
'sphinx.ext.napoleon',
'nbsphinx',
'myst_parser',
'sphinx_copybutton',
'sphinx_design',
'sphinx_inline_tabs',
]
# -- Options for Markdown files ----------------------------------------------
myst_enable_extensions = [
"colon_fence",
"deflist",
"dollarmath"
]
myst_heading_anchors = 3
napoleon_numpy_docstring = True
autodoc_typehints = "both"
autosummary_generate = True
templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '**.ipynb_checkpoints']
# -- Options for HTML output -------------------------------------------------
html_theme = 'furo'
html_title = "FeOs"
html_static_path = ['_static']
html_css_files = [
'style.css',
]