|
54 | 54 | "sphinxcontrib.bibtex", |
55 | 55 | ] |
56 | 56 |
|
| 57 | +intersphinx_mapping = { |
| 58 | + "python": ("https://docs.python.org/{.major}".format(sys.version_info), None), |
| 59 | + "numpy": ("https://numpy.org/doc/stable", None), |
| 60 | + "scipy": ("https://docs.scipy.org/doc/scipy/", None), |
| 61 | + "matplotlib": ("https://matplotlib.org/", None), |
| 62 | + "pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None), |
| 63 | + "seaborn": ("https://seaborn.pydata.org/", None), |
| 64 | +} |
| 65 | + |
57 | 66 | bibtex_bibfiles = ["references.bib"] |
58 | 67 |
|
59 | 68 | numpydoc_show_class_members = False |
|
82 | 91 | exclude_patterns = [] |
83 | 92 |
|
84 | 93 | # Options for autodoc and autosummary |
85 | | -autodoc_default_options = { |
86 | | - # "members": True, |
87 | | - # "undoc-members": True, |
88 | | - # "imported-members": True, |
89 | | - # "inherited-members": False, |
90 | | - # "show-inheritance": True, |
91 | | - # "special-members": "__call__", |
92 | | - "memberorder": "bysource", |
93 | | -} |
94 | 94 | # do not ignore __all__, use it to determine public members |
95 | 95 | autosummary_ignore_module_all = False |
96 | 96 | # include imported members in autosummary |
97 | 97 | autosummary_imported_members = False |
98 | 98 | # selects content to insert into the main body of an autoclass directive. |
99 | 99 | autoclass_content = "both" |
100 | 100 |
|
101 | | - |
102 | 101 | # -- Options for HTML output ------------------------------------------------- |
103 | 102 |
|
104 | 103 | # The theme to use for HTML and HTML Help pages. See the documentation for |
|
0 commit comments