File tree 5 files changed +15
-9
lines changed
5 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 3
3
4
4
# You can set these variables from the command line, and also
5
5
# from the environment for the first two.
6
- SPHINXOPTS ?=
6
+ SPHINXOPTS ?= -W
7
7
SPHINXBUILD ?= sphinx-build
8
8
SOURCEDIR = .
9
9
BUILDDIR = _build
Original file line number Diff line number Diff line change 31
31
"numpydoc" ,
32
32
"sphinx_gallery.gen_gallery" ,
33
33
"sphinx_automodapi.automodapi" ,
34
+ "sphinx_automodapi.smart_resolver" ,
34
35
]
35
36
36
37
sphinx_gallery_conf = {
49
50
# This pattern also affects html_static_path and html_extra_path.
50
51
exclude_patterns = ["_build" , "Thumbs.db" , ".DS_Store" ]
51
52
53
+ default_role = "py:obj"
52
54
53
55
# -- Options for HTML output -------------------------------------------------
54
56
Original file line number Diff line number Diff line change 1
- .. matplotlib-napari documentation master file, created by
2
- sphinx-quickstart on Fri Apr 29 20:57:13 2022.
3
- You can adapt this file completely to your liking, but it should at least
4
- contain the root `toctree` directive .
1
+ matplotlib-napari
2
+ =================
3
+ `` matplotlib-napari `` is a `` napari `` plugin for generating `` Matplotlib `` plots
4
+ from one or more `` napari `` Layers .
5
5
6
- Welcome to matplotlib-napari's documentation!
7
- =============================================
6
+ Design
7
+ ------
8
+ ``matplotlib-napari `` contains a number of different ``napari `` widgets. Each
9
+ widget is designed to map one or more ``napari `` Layers on to a ``Matplotlib ``
10
+ plot. As an example, the `~.HistogramWidget ` is used to
11
+ map one or more Image layers on to a 1D histogram plot.
8
12
9
13
.. toctree ::
10
- :maxdepth: 2
14
+ :maxdepth: 1
11
15
:caption: Contents:
12
16
13
17
auto_examples/index
Original file line number Diff line number Diff line change 4
4
__version__ = "unknown"
5
5
6
6
7
- from ._widget import * # NoQA
7
+ from .histogram import * # NoQA
File renamed without changes.
You can’t perform that action at this time.
0 commit comments