LSST Applications g0f08755f38+c959026f09,g12f32b3c4e+3caaee4b9e,g1653933729+a8ce1bb630,g168dd56ebc+a8ce1bb630,g1a0ca8cf93+2f198f2aa8,g28da252d5a+7e025d8f94,g2bbee38e9b+c076ca1133,g2bc492864f+c076ca1133,g3156d2b45e+41e33cbcdc,g347aa1857d+c076ca1133,g35bb328faa+a8ce1bb630,g3a166c0a6a+c076ca1133,g3e281a1b8c+b162652f75,g414038480c+6cfc39b08c,g41af890bb2+d4c324d475,g5fbc88fb19+17cd334064,g6b1c1869cb+878204452a,g781aacb6e4+a8ce1bb630,g80478fca09+a0d7f63753,g82479be7b0+05b6a2221e,g8554a5dd34+785477f506,g858d7b2824+c959026f09,g89c8672015+ff349045bf,g9125e01d80+a8ce1bb630,g9726552aa6+3a8748fa0c,ga5288a1d22+59736ba80c,gb58c049af0+d64f4d3760,gc28159a63d+c076ca1133,gcf0d15dbbd+efb7d8614d,gd7358e8bfb+4147a68bd7,gda3e153d99+c959026f09,gda6a2b7d83+efb7d8614d,gdaeeff99f8+1711a396fd,ge2409df99d+5ddbaf9a99,ge79ae78c31+c076ca1133,gf0baf85859+50e8a91c63,gf3967379c6+f3639e9197,gfb92a5be7c+c959026f09,w.2024.47
LSST Data Management Base Package
Loading...
Searching...
No Matches
conf.py
Go to the documentation of this file.
1"""Sphinx configuration file for an LSST stack package.
2
3This configuration only affects single-package Sphinx documenation builds.
4"""
5
6from documenteer.conf.pipelinespkg import * # noqa: F403, import *
7
8project = "pex_config"
9html_theme_options["logotext"] = project # noqa: F405, unknown name
10html_title = project
11html_short_title = project
12doxylink = {}
13exclude_patterns = ["changes/*"]
14
15# Add pipelines.lsst.io to the intersphinx configuration.
16# NOTE: we might want to be more sophisticated about mapping corresponding
17# versions of the Pipelines and astro_metadata_translator. This technique will
18# mostly work if the Pipelines and astro_metadata_translator are developed
19# concurrently.
20intersphinx_mapping["lsst"] = ("https://pipelines.lsst.io/v/daily/", None) # noqa
21
22nitpick_ignore = [
23 ("py:obj", "lsst.daf.base.PropertySet"),
24 ("py:obj", "lsst.pex.config.Field.doc"), # Cannot make the doc field property appear in docs.
25 ("py:obj", "lsst.pex.config.List"), # Private class.
26 ("py:obj", "RegistryInstanceDict"), # Private class.
27 ("py:class", "lsst.pex.config.dictField.Dict"),
28 ("py:class", "lsst.pex.config.listField.List"),
29 ("py:class", "ActionTypeVar"),
30]
31nitpick_ignore_regex = [
32 ("py:class", "a set-like.*"), # collections.abc.Mapping inheritance.
33 ("py:class", r"D\[k\] if k .*"), # collections.abc.Mapping inheritance.
34 ("py:class", "an object providing.*"), # collections.abc.Mapping inheritance.
35 ("py:(obj|class)", "lsst.pex.config..*TypeVar"), # Sphinx does not like TypeVar.
36 ("py:obj", "ConfigField.(item|dict)Check"), # Cannot make the check properties appear in docs.
37 ("py:(obj|class)", ".*ConfigInstanceDict"), # Private class.
38]