for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
extensions = [
"IPython.sphinxext.ipython_console_highlighting",
"nbsphinx",
"numpydoc",
"sphinx_rtd_theme",
"sphinx.ext.mathjax",
"sphinx_automodapi.automodapi",
"sphinx.ext.viewcode",
"sphinx.ext.intersphinx",
"sphinx.ext.doctest",
]
intersphinx_mapping = {
"astropy": ("http://docs.astropy.org/en/latest/", None),
"matplotlib": ("https://matplotlib.org/", None),
"numpy": ("https://numpy.org/doc/stable/", None),
"pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None),
"py": ("https://docs.python.org/3/", None),
}
numpydoc_show_class_members = False
html_theme = "sphinx_rtd_theme"
html_static_path = ["_static"]
# html_style = ''
def setup(app):
app.add_css_file("mutis.css")
app.add_js_file("copybutton.js")
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = ["_build", "_templates", "_static", "**.ipynb_checkpoints"]
copyright = "2021 MUTIS Developers"
project = "MUTIS"