summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-efficientnet-pytorch/package.py
blob: 435c2d276d1a105df5fe37b5209702f50dc41d16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 PyEfficientnetPytorch(PythonPackage):
    """EfficientNet implemented in PyTorch."""

    homepage = "https://github.com/lukemelas/efficientnet_pytorch"
    pypi = "efficientnet_pytorch/efficientnet_pytorch-0.6.3.tar.gz"

    version("0.7.1", sha256="00b9b261effce59d2d47aae2ad238c29a2a65175470f41ada7ecac439b7c1ee1")
    version("0.6.3", sha256="6667459336893e9bf6367de3788ba449fed97f65da3b6782bf2204b6273a319f")

    depends_on("python@3.5.0:", type=("build", "run"))
    depends_on("py-setuptools", type="build")
    depends_on("py-torch", type=("build", "run"))