Skip to content

Commit

Permalink
Merge pull request #57 from lsst/tickets/DM-30015
Browse files Browse the repository at this point in the history
DM-30015: Update Sphinx conf.py for documenteer 0.6
  • Loading branch information
timj committed Dec 8, 2021
2 parents dea7e14 + 988d73e commit 0683b0d
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 14 deletions.
5 changes: 0 additions & 5 deletions README

This file was deleted.

8 changes: 8 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#####################
meas_extensions_psfex
#####################

``meas_extensions_psfex`` is a package in the `LSST Science Pipelines <https://pipelines.lsst.io>`_.

The ``lsst.meas.extensions.psfex`` Python module profiles a wrapper around Astromatic's `psfex <https://www.astromatic.net/software/psfex>`_ PSF extractor.
Documentation is available at https://pipelines.lsst.io/modules/lsst.meas.extensions.psfex/index.html.
16 changes: 8 additions & 8 deletions doc/conf.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
"""Sphinx configuration file for an LSST stack package.
This configuration only affects single-package Sphinx documenation builds.
This configuration only affects single-package Sphinx documentation builds.
For more information, see:
https://developer.lsst.io/stack/building-single-package-docs.html
"""

from documenteer.sphinxconfig.stackconf import build_package_configs
import lsst.meas.extensions.psfex
from documenteer.conf.pipelinespkg import *


_g = globals()
_g.update(build_package_configs(
project_name='meas_extensions_psfex',
version=lsst.meas.extensions.psfex.version.__version__))
project = "meas_extensions_psfex"
html_theme_options["logotext"] = project
html_title = project
html_short_title = project
7 changes: 6 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
max-line-length = 110
max-doc-length = 79
ignore = E133, E226, E228, N802, N803, N806, N812, N815, N816, W503, E266
exclude = __init__.py
exclude =
bin,
doc/conf.py,
**/*/__init__.py,
**/*/version.py,
tests/.tests,
config/*.py

[tool:pytest]
Expand Down

0 comments on commit 0683b0d

Please sign in to comment.