-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconf.py
119 lines (109 loc) · 3.46 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
from __future__ import annotations
import invert4geom
project = "invert4geom"
copyright = "2023, Matt Tankersley"
author = "Matt Tankersley"
version = release = invert4geom.__version__
extensions = [
"sphinx.ext.autodoc", # needed for typehints
"sphinx.ext.viewcode",
"sphinx.ext.intersphinx",
"sphinx.ext.napoleon",
"autoapi.extension",
"sphinx.ext.mathjax",
"sphinx_copybutton",
"myst_parser",
"sphinx_design",
"nbsphinx",
"sphinxcontrib.bibtex",
]
source_suffix = [".rst", ".md"]
exclude_patterns = [
"_build",
"**.ipynb_checkpoints",
"Thumbs.db",
".DS_Store",
".env",
".venv",
]
bibtex_bibfiles = ["_invert4geom_refs.bib"]
nbsphinx_execute = "never"
myst_enable_extensions = [
"colon_fence",
]
intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
#
# Runtime deps
#
"numpy": ("https://numpy.org/doc/stable/", None),
"pandas": ("http://pandas.pydata.org/pandas-docs/stable/", None),
"xarray": ("https://docs.xarray.dev/en/stable/", None),
"verde": ("https://www.fatiando.org/verde/latest/", None),
"rioxarray": ("https://corteva.github.io/rioxarray/stable/", None),
# pykdtree
"xrft": ("https://xrft.readthedocs.io/en/stable/", None),
"harmonica": ("https://www.fatiando.org/harmonica/latest/", None),
"polartoolkit": ("https://polartoolkit.readthedocs.io/en/latest/", None),
"numba": ("https://numba.pydata.org/numba-doc/latest/", None),
"scipy": ("https://docs.scipy.org/doc/scipy/", None),
# numba_progress
"sklearn": ("https://scikit-learn.org/stable/", None),
"dask": ("https://docs.dask.org/en/stable/", None),
# "tqdm": ("https://tqdm.github.io/", None),
"pygmt": ("https://www.pygmt.org/latest/", None),
#
# Viz deps
#
"pyvista": ("https://docs.pyvista.org/", None),
# trame
# ipywidgets
"matplotlib": ("https://matplotlib.org/stable/", None),
"seaborn": ("https://seaborn.pydata.org/", None),
#
# Opti deps
#
"optuna": ("https://optuna.readthedocs.io/en/stable/", None),
}
nitpick_ignore = [
("py:class", "_io.StringIO"),
("py:class", "_io.BytesIO"),
("py:class", "optional"),
("py:class", "optuna.trial"),
("py:class", "optuna.study"),
("py:class", "optuna.storages.BaseStorage"),
("py:class", "plotly.graph_objects.Figure"),
("py:class", "Ellipsis"),
]
always_document_param_types = True
add_module_names = False
add_function_parentheses = False
# API doc configuration
# -----------------------------------------------------------------------------
autoapi_dirs = ["../src/invert4geom"]
autoapi_type = "python"
autoapi_add_toctree_entry = False
autodoc_typehints = "description"
# HTML output configuration
# -----------------------------------------------------------------------------
html_title = f'{project} <span class="project-version">{version}</span>'
html_last_updated_fmt = "%b %d, %Y"
html_copy_source = True
html_show_sourcelink = True
html_show_sphinx = True
html_show_copyright = False
html_theme = "sphinx_book_theme"
html_theme_options = {
"repository_url": "https://github.com/mdtanker/invert4geom",
"repository_branch": "main",
"path_to_docs": "docs",
"launch_buttons": {
"binderhub_url": "https://mybinder.org",
"notebook_interface": "jupyterlab",
},
"use_edit_page_button": True,
"use_issues_button": True,
"use_repository_button": True,
"use_download_button": True,
"home_page_in_toc": False,
}