summaryrefslogtreecommitdiff
path: root/numpydoc/tests/tinybuild/conf.py
blob: fb3b52832c36b305be6092b13bd980d8c2162a76 (plain)
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
import os
import sys

path = os.path.dirname(__file__)
if path not in sys.path:
    sys.path.insert(0, path)
import numpydoc_test_module  # noqa

extensions = [
    "sphinx.ext.autodoc",
    "sphinx.ext.intersphinx",
    "numpydoc",
]
project = "numpydoc_test_module"
autosummary_generate = True
autodoc_default_options = {"inherited-members": None}
source_suffix = ".rst"
master_doc = "index"  # NOTE: will be changed to `root_doc` in sphinx 4
exclude_patterns = ["_build"]
intersphinx_mapping = {
    "python": ("https://docs.python.org/3", None),
}
nitpicky = True
highlight_language = "python3"
numpydoc_class_members_toctree = False
numpydoc_xref_param_type = True