Skip to content

Commit

Permalink
Merge pull request #66 from lsst/tickets/DM-17831
Browse files Browse the repository at this point in the history
DM-17831: Rewrite docstrings in numpydoc format
  • Loading branch information
timj committed Feb 14, 2019
2 parents d9d95e9 + ec0fbc8 commit edfe965
Show file tree
Hide file tree
Showing 20 changed files with 1,522 additions and 2,515 deletions.
6 changes: 6 additions & 0 deletions doc/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
html
xml

# Sphinx products
_build
py-api
3 changes: 0 additions & 3 deletions doc/SConscript

This file was deleted.

36 changes: 36 additions & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This file is part of obs_lsst.
#
# Developed for the LSST Data Management System.
# This product includes software developed by the LSST Project
# (http://www.lsst.org).
# See the COPYRIGHT file at the top-level directory of this distribution
# for details of code ownership.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the LSST License Statement and
# the GNU General Public License along with this program. If not,
# see <http://www.lsstcorp.org/LegalNotices/>.

"""Sphinx configuration file for an LSST stack package.
This configuration only affects single-package Sphinx documentation builds.
"""

from documenteer.sphinxconfig.stackconf import build_package_configs
import lsst.sconsUtils
import lsst.sconsUtils.version


_g = globals()
_g.update(build_package_configs(
project_name="sconsUtils",
version=lsst.sconsUtils.version.__version__))

0 comments on commit edfe965

Please sign in to comment.