Coverage for python/lsst/images/__main__.py: 0%
2 statements
« prev ^ index » next coverage.py v7.14.1, created at 2026-06-12 07:51 +0000
« prev ^ index » next coverage.py v7.14.1, created at 2026-06-12 07:51 +0000
1# This file is part of lsst-images.
2#
3# Developed for the LSST Data Management System.
4# This product includes software developed by the LSST Project
5# (https://www.lsst.org).
6# See the COPYRIGHT file at the top-level directory of this distribution
7# for details of code ownership.
8#
9# Use of this source code is governed by a 3-clause BSD-style
10# license that can be found in the LICENSE file.
11"""Entry point for ``python -m lsst.images``.
13The same command is also installed as the ``lsst-images-admin`` console
14script (see ``[project.scripts]`` in ``pyproject.toml``).
15"""
17from __future__ import annotations
19from .cli import main
21if __name__ == "__main__":
22 main()