spack/var/spack/repos/builtin/packages/py-cryolobm/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

22 lines
830 B
Python

# 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 spack.package import *
class PyCryolobm(PythonPackage):
"""The crYOLO boxmanger was written to produce annotation data for crYOLO
as deep learning based particle picking procedure for cryo electro microscopy."""
homepage = "https://pypi.org/project/cryoloBM/#description"
pypi = "cryoloBM/cryoloBM-1.3.7.tar.gz"
version("1.3.7", sha256="e3505c95cddac3a344d1c6eddf1a9ff576a1384f9194b580287c76367912bedc")
depends_on("python@3.4.0:")
depends_on("py-setuptools", type="build")
depends_on("py-matplotlib@2.2.3:", type=("build", "run"))
depends_on("py-numpy@1.14.5:", type=("build", "run"))