Total Complexity | 1 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | extensions = [ |
||
2 | "IPython.sphinxext.ipython_console_highlighting", |
||
3 | "nbsphinx", |
||
4 | "numpydoc", |
||
5 | "sphinx_rtd_theme", |
||
6 | "sphinx.ext.mathjax", |
||
7 | "sphinx_automodapi.automodapi", |
||
8 | "sphinx.ext.viewcode", |
||
9 | "sphinx.ext.intersphinx", |
||
10 | "sphinx.ext.doctest", |
||
11 | ] |
||
12 | |||
13 | intersphinx_mapping = { |
||
14 | "astropy": ("http://docs.astropy.org/en/latest/", None), |
||
15 | "matplotlib": ("https://matplotlib.org/", None), |
||
16 | "numpy": ("https://numpy.org/doc/stable/", None), |
||
17 | "pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None), |
||
18 | "py": ("https://docs.python.org/3/", None), |
||
19 | } |
||
20 | |||
21 | numpydoc_show_class_members = False |
||
22 | |||
23 | html_theme = "sphinx_rtd_theme" |
||
24 | html_static_path = ["_static"] |
||
25 | |||
26 | |||
27 | # html_style = '' |
||
28 | def setup(app): |
||
29 | app.add_css_file("mutis.css") |
||
30 | app.add_js_file("copybutton.js") |
||
31 | |||
32 | |||
33 | # List of patterns, relative to source directory, that match files and |
||
34 | # directories to ignore when looking for source files. |
||
35 | exclude_patterns = ["_build", "_templates", "_static", "**.ipynb_checkpoints"] |
||
36 | copyright = "2021 MUTIS Developers" |
||
37 | project = "MUTIS" |
||
38 |