py-tbparse: add new package (#31979)

Co-authored-by: adamjstewart <adamjstewart@users.noreply.github.com>
This commit is contained in:
Adam J. Stewart 2022-08-07 23:57:36 -07:00 committed by GitHub
parent a00951137f
commit 0e3418887b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,20 @@
# Copyright 2013-2022 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 PyTbparse(PythonPackage):
"""Load tensorboard event logs as pandas DataFrames."""
homepage = "https://github.com/j3soon/tbparse"
pypi = "tbparse/tbparse-0.0.7.tar.gz"
version("0.0.7", sha256="0ddd3c764ceb1859bc0cb69ca355bff4fd5936c4bfe885e252e481564b2371a9")
depends_on("python@3.7:", type=("build", "run"))
depends_on("py-setuptools@42:", type="build")
depends_on("py-pandas@1.3:", type=("build", "run"))
depends_on("py-tensorboard@2:", type=("build", "run"))