[py-model-index] new package (#39301)

This commit is contained in:
Jen Herting 2023-08-08 18:20:37 -04:00 committed by GitHub
parent 97892bda18
commit 960bdfe612
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,21 @@
# 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 PyModelIndex(PythonPackage):
"""Create a source of truth for ML model results and browse it on Papers with Code"""
homepage = "https://github.com/paperswithcode/model-index"
git = "https://github.com/paperswithcode/model-index.git"
version("0.1.11", commit="a39af5f8aaa2a90b8fc7180744a855282360067a")
depends_on("py-setuptools", type="build")
depends_on("py-pyyaml", type=("build", "run"))
depends_on("py-markdown", type=("build", "run"))
depends_on("py-ordered-set", type=("build", "run"))
depends_on("py-click", type=("build", "run"))