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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
# Licensed under a 3-clause BSD style license - see LICENSE.rst
"""
Documentation build configuration file.
This file is execfile()d with the current directory set to its
containing dir.
Note that not all possible configuration values are present in this
file.
All configuration values have a default. Some values are defined in the
global Astropy configuration which is loaded here before anything else.
See astropy.sphinx.conf for which values are set there.
"""
import os
import sys
import tomllib
from datetime import UTC, datetime
from importlib import metadata
from pathlib import Path
from sphinx.util import logging
logger = logging.getLogger(__name__)
try:
from sphinx_astropy.conf.v2 import * # noqa: F403
from sphinx_astropy.conf.v2 import extensions # noqa: E402
except ImportError:
msg = ('The documentation requires the sphinx-astropy package to be '
'installed. Please install the "docs" requirements.')
logger.error(msg)
sys.exit(1)
# Get configuration information from pyproject.toml
with (Path(__file__).parents[1] / 'pyproject.toml').open('rb') as fh:
project_meta = tomllib.load(fh)['project']
# -- Plot configuration -------------------------------------------------------
plot_rcparams = {
'axes.labelsize': 'large',
'figure.figsize': (6, 6),
'figure.subplot.hspace': 0.5,
'savefig.bbox': 'tight',
'savefig.facecolor': 'none',
}
plot_apply_rcparams = True
plot_html_show_source_link = True
plot_formats = ['png', 'hires.png', 'pdf', 'svg']
# Don't use the default - which includes a numpy and matplotlib import
plot_pre_code = ''
# -- General configuration ----------------------------------------------------
# By default, highlight as Python 3.
highlight_language = 'python3'
# If your documentation needs a minimal Sphinx version, state it here.
needs_sphinx = '3.0'
# Extend astropy intersphinx_mapping with packages we use here
intersphinx_mapping.update( # noqa: F405
{'regions': ('https://astropy-regions.readthedocs.io/en/stable/', None),
'skimage': ('https://scikit-image.org/docs/stable/', None),
'gwcs': ('https://gwcs.readthedocs.io/en/latest/', None)})
# Exclude astropy intersphinx_mapping for unused packages
del intersphinx_mapping['h5py'] # noqa: F405
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# .inc.rst mean *include* files, don't have sphinx process them
# exclude_patterns += ["_templates", "_pkgtemplate.rst", "**/*.inc.rst"]
extensions += [
'sphinx_design',
]
# This is added to the end of RST files - a good place to put
# substitutions to be used globally.
rst_epilog = """
.. _Astropy: https://www.astropy.org/
"""
# -- Project information ------------------------------------------------------
project = project_meta['name']
author = project_meta['authors'][0]['name']
project_copyright = f'2011-{datetime.now(tz=UTC).year}, {author}'
github_project = 'astropy/photutils'
# The version info for the project you're documenting, acts as
# replacement for |version| and |release|, also used in various other
# places throughout the built documents.
# The full version, including alpha/beta/rc tags.
release = metadata.version(project)
# The short X.Y version.
version = '.'.join(release.split('.')[:2])
dev = 'dev' in release
# -- Options for HTML output --------------------------------------------------
html_theme_options = {
'header_links_before_dropdown': 6,
'collapse_navigation': True,
'navigation_depth': 2,
'show_nav_level': 2,
'navigation_with_keys': False,
'use_edit_page_button': False,
'logo': {
'image_light': 'photutils_logo_light_plain_path.svg',
'image_dark': 'photutils_logo_dark_plain_path.svg',
},
# alternate way to set the logo
# 'github_url': 'https://github.com/astropy/photutils',
'icon_links': [
{'name': 'GitHub',
'url': 'https://github.com/astropy/photutils',
'icon': 'fa-brands fa-github',
'type': 'fontawesome',
},
],
}
html_title = f'{project} {release}'
html_show_sourcelink = False
html_favicon = os.path.join('_static', 'photutils_logo.ico')
html_static_path = ['_static']
html_css_files = ['custom.css'] # path relative to _static
# Output file base name for HTML help builder.
htmlhelp_basename = project + 'doc'
# Set canonical URL from the Read the Docs Domain
html_baseurl = os.environ.get('READTHEDOCS_CANONICAL_URL', '')
# A dictionary of values to pass into the template engine's context for
# all pages.
html_context = {
'default_mode': 'light',
'to_be_indexed': ['stable', 'latest'],
'is_development': dev,
'github_user': 'astropy',
'github_repo': 'photutils',
'github_version': 'main',
'doc_path': 'docs',
# Tell Jinja2 templates the build is running on Read the Docs
'READTHEDOCS': os.environ.get('READTHEDOCS', '') == 'True',
}
# fix size of inheritance diagrams (e.g., PSF diagram was cut off)
inheritance_graph_attrs = {'size': '""'}
# -- Options for LaTeX output -------------------------------------------------
# Grouping the document tree into LaTeX files. List of tuples (source
# start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [('index', project + '.tex', project + ' Documentation',
author, 'manual')]
# latex_logo = '_static/photutils_banner.pdf'
# -- Options for manual page output -------------------------------------------
# One entry per manual page. List of tuples (source start file, name,
# description, authors, manual section).
man_pages = [('index', project.lower(), project + ' Documentation',
[author], 1)]
# -- Resolving issue number to links in changelog -----------------------------
github_issues_url = f'https://github.com/{github_project}/issues/'
# -- Turn on nitpicky mode for sphinx (to warn about references not found) ----
nitpicky = True
# Some warnings are impossible to suppress, and you can list specific
# references that should be ignored in a nitpick-exceptions file which
# should be inside the docs/ directory. The format of the file should be:
#
# <type> <class>
#
# for example:
#
# py:class astropy.io.votable.tree.Element
# py:class astropy.io.votable.tree.SimpleElement
# py:class astropy.io.votable.tree.SimpleElementWithContent
#
# Uncomment the following lines to enable the exceptions:
nitpick_ignore = []
nitpick_filename = 'nitpick-exceptions.txt'
if os.path.isfile(nitpick_filename):
with open(nitpick_filename) as fh:
for line in fh:
if line.strip() == '' or line.startswith('#'):
continue
dtype, target = line.split(None, 1)
target = target.strip()
nitpick_ignore.append((dtype, target))
# -- Options for linkcheck output ---------------------------------------------
linkcheck_retry = 5
linkcheck_ignore = ['http://data.astropy.org',
r'https://iraf.net/*',
r'https://github\.com/astropy/photutils/(?:issues|pull)/\d+']
linkcheck_timeout = 180
|