summaryrefslogtreecommitdiff
path: root/lib/spack/spack/detection/__init__.py
blob: 7c54fb9d49ba76af68e1477f6fb411689e4013ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from .common import DetectedPackage, executable_prefix, update_configuration
from .path import by_path, executables_in_path
from .test import detection_tests

__all__ = [
    "DetectedPackage",
    "by_path",
    "executables_in_path",
    "executable_prefix",
    "update_configuration",
    "detection_tests",
]