summaryrefslogtreecommitdiff
path: root/lib/spack/spack/detection/__init__.py
blob: b9ff93d774e518eb709023c04f19bb4c0bd9661f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright 2013-2022 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_executable, by_library, executables_in_path

__all__ = [
    "DetectedPackage",
    "by_library",
    "by_executable",
    "executables_in_path",
    "executable_prefix",
    "update_configuration",
]