spack/var/spack/repos/builtin/packages/py-hep-ml/package.py
Todd Gamblin 3118647802
Update copyright year to 2024 (#41919)
It was time to run `spack license update-copyright-year` again.
2024-01-02 09:21:30 +01:00

27 lines
1014 B
Python

# 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 PyHepMl(PythonPackage):
"""Machine Learning for High Energy Physics"""
homepage = "https://github.com/arogozhnikov/hep_ml"
pypi = "hep_ml/hep_ml-0.7.0.tar.gz"
license("Apache-2.0")
version("0.7.1", sha256="f13635dac09ffc32ae276af9c58ebf93c593dae3da25c4e456e10e965708320b")
version("0.7.0", sha256="0402037064d78f5723106b385ad5f20df8f67cb312c57cb4ce3839c5616f328e")
depends_on("py-setuptools", type="build")
depends_on("py-numpy@1.9:", type=("build", "run"))
depends_on("py-scipy@0.15.0:", type=("build", "run"))
depends_on("py-pandas@0.14.0:", type=("build", "run"))
depends_on("py-scikit-learn@0.19:", type=("build", "run"))
depends_on("py-theano@1.0.2:", type=("build", "run"))
depends_on("py-six", type=("build", "run"))