LSST Applications g04a91732dc+b257dfc5ef,g07dc498a13+7e3c5f68a2,g12483e3c20+719ef69748,g1409bbee79+7e3c5f68a2,g1a7e361dbc+7e3c5f68a2,g1fd858c14a+9f35e23ec3,g35bb328faa+fcb1d3bbc8,g3bd4b5ce2c+376b67b515,g4e0f332c67+5d362be553,g53246c7159+fcb1d3bbc8,g60b5630c4e+719ef69748,g6a5c94f25a+5f44f05f97,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g794fd9dcec+ed0768eb49,g7b71ed6315+fcb1d3bbc8,g8852436030+a85a031248,g89139ef638+7e3c5f68a2,g9125e01d80+fcb1d3bbc8,g919ac25b3e+7deac9a2c2,g95236ca021+f7a31438ed,g989de1cb63+7e3c5f68a2,g9f33ca652e+c9b5dfb7a3,ga9baa6287d+719ef69748,gaaedd4e678+7e3c5f68a2,gabe3b4be73+1e0a283bba,gb1101e3267+5c5d870f02,gb44bc621b2+6e77abaf78,gb58c049af0+f03b321e39,gbaa7868d32+719ef69748,gc45c3306ec+33b3578538,gc99c83e5f0+76d20ab76d,gcf25f946ba+a85a031248,gd315a588df+0122250889,gd6cbbdb0b4+c8606af20c,gde0f65d7ad+aaea62184c,ge278dab8ac+932305ba37,gfba249425e+fcb1d3bbc8,w.2025.08
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]