-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconf.py
239 lines (181 loc) · 6.63 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
# Configuration file for the Sphinx documentation builder.
#
# This file only contains a selection of the most common options. For a full
# list see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Path setup --------------------------------------------------------------
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
# import os
# import sys
# sys.path.insert(0, os.path.abspath('.'))
#import re
import os, sys, re
import datetime
# -- Project information -----------------------------------------------------
project = 'SpKit'
#copyright = '2022, Nikesh Bajaj'
copyright = '2019-%s, Nikesh Bajaj' % datetime.date.today().year
author = 'Nikesh Bajaj'
# The full version, including alpha/beta/rc tags
release = '0.0.9.4'
import spkit
version = re.sub(r'\.dev0+.*$', r'.dev', spkit.__version__)
release = spkit.__version__
print("spkit (VERSION %s)" % (version,))
# -- General configuration ---------------------------------------------------
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
#extensions = []
#extensions = ['sphinx.ext.autodoc']
# extensions = ['sphinx.ext.doctest', 'sphinx.ext.autodoc', 'sphinx.ext.todo',
# 'sphinx.ext.extlinks', 'sphinx.ext.mathjax',
# 'sphinx.ext.autosummary', 'numpydoc',
# 'sphinx.ext.intersphinx',
# 'matplotlib.sphinxext.plot_directive']
# extensions = ['sphinx.ext.autodoc',
# 'sphinx.ext.doctest',
# 'sphinx.ext.todo',
# 'sphinx.ext.coverage',
# 'sphinx.ext.mathjax',
# 'sphinx.ext.viewcode',
# 'sphinx.ext.napoleon']
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
'sphinx.ext.coverage',
'sphinx.ext.mathjax',
'sphinx.ext.intersphinx',
'sphinx_design',
'doi_role',
'matplotlib.sphinxext.plot_directive',
]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
#exclude_patterns = []
exclude_trees = ['_build']
source_suffix = '.rst'
master_doc = 'index'
# -- Options for HTML output -------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
#html_theme = 'alabaster'
#html_theme = 'press'
#html_theme = 'python_docs_theme'
#html_theme = 'sphinxdoc'
#html_theme = 'karma_sphinx_theme'
#import sphinx_pdj_theme
#html_theme = 'sphinx_pdj_theme'
#html_theme_path = [sphinx_pdj_theme.get_html_theme_path()]
pygments_style = 'sphinx'
modindex_common_prefix = ['spkit.']
html_theme = 'nature'
#html_favicon = 'favicon.ico'
#html_favicon = 'docs/figures/spkitlogo1.ico'
#html_favicon = '_static/spkitlogo7.ico'
html_last_updated_fmt = '%b %d, %Y'
html_title = 'SpKit'
import spkit
#html_sidebars = {
# '**': ['localtoc.html', "relations.html", 'quicklinks.html', 'searchbox.html', 'editdocument.html'],
#}
html_sidebars = {
'**': ['localtoc.html', "relations.html", 'quicklinks.html', 'searchbox.html'],
}
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_show_sourcelink = False
html_use_opensearch = 'http://spkit-doc.readthedocs.org'
htmlhelp_basename = 'spkit-doc'
numpydoc_class_members_toctree = False
autodoc_typehints = "description"
# Don't show class signature with the class' name.
autodoc_class_signature = "separated"
# plot_directive options
plot_include_source = True
plot_formats = [('png', 96), 'pdf']
plot_html_show_formats = False
plot_html_show_source_link = False
intersphinx_mapping = {
'numpy': ('https://numpy.org/devdocs', None)}
# -----------------------------------------------------------------------------
# Source code links
# -----------------------------------------------------------------------------
import re
import inspect
from os.path import relpath, dirname
for name in ['sphinx.ext.linkcode', 'linkcode', 'numpydoc.linkcode']:
try:
__import__(name)
extensions.append(name)
break
except ImportError:
pass
else:
print("NOTE: linkcode extension not found -- no links to source generated")
def linkcode_resolve(domain, info):
"""
Determine the URL corresponding to Python object
"""
if domain != 'py':
return None
modname = info['module']
fullname = info['fullname']
submod = sys.modules.get(modname)
if submod is None:
return None
obj = submod
for part in fullname.split('.'):
try:
obj = getattr(obj, part)
except Exception:
return None
# Use the original function object if it is wrapped.
obj = getattr(obj, "__wrapped__", obj)
# SciPy's distributions are instances of *_gen. Point to this
# class since it contains the implementation of all the methods.
#if isinstance(obj, (rv_generic, multi_rv_generic)):
# obj = obj.__class__
try:
fn = inspect.getsourcefile(obj)
except Exception:
fn = None
if not fn:
try:
fn = inspect.getsourcefile(sys.modules[obj.__module__])
except Exception:
fn = None
if not fn:
return None
try:
source, lineno = inspect.getsourcelines(obj)
except Exception:
lineno = None
if lineno:
linespec = "#L%d-L%d" % (lineno, lineno + len(source) - 1)
else:
linespec = ""
startdir = os.path.abspath(os.path.join(dirname(spkit.__file__), '..'))
fn = relpath(fn, start=startdir).replace(os.path.sep, '/')
if fn.startswith('spkit/'):
m = re.match(r'^.*dev0\+([a-f0-9]+)$', spkit.__version__)
if m:
return "https://github.com/Nikeshbajaj/spkit/blob/%s/%s%s" % (
m.group(1), fn, linespec)
elif 'dev' in spkit.__version__:
return "https://github.com/Nikeshbajaj/spkit/blob/main/%s%s" % (
fn, linespec)
else:
return "https://github.com/Nikeshbajaj/spkit/blob/%s/%s%s" % (
spkit.__version__, fn, linespec)
else:
return None