summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-lineenhancer/package.py
blob: 1d8fc4df9909b3d32866db55814cc8bf7f6a533b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2013-2024 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 spack.package import *


class PyLineenhancer(PythonPackage):
    """The line enhancer is only used by crYOLO internally"""

    homepage = "https://github.com/MPI-Dortmund/LineEnhancer"
    pypi = "lineenhancer/lineenhancer-1.0.8.tar.gz"

    maintainers("dorton21")

    license("MIT")

    version("1.0.8", sha256="a1c7f2556110135d7298b0002674b669b8bbf23f94d63e3e3db8f17f2fd3efbe")

    depends_on("py-setuptools", type="build")
    depends_on("py-numpy@1.14.5:", type=("build", "run"))
    depends_on("py-scipy", type=("build", "run"))
    depends_on("py-mrcfile", type=("build", "run"))