spack/var/spack/repos/builtin/packages/py-visdom/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

33 lines
1.2 KiB
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 PyVisdom(PythonPackage):
"""Visdom aims to facilitate visualization of (remote) data
with an emphasis on supporting scientific
experimentation."""
homepage = "https://github.com/facebookresearch/visdom"
pypi = "visdom/visdom-0.1.8.9.tar.gz"
license("Apache-2.0")
version("0.1.8.9", sha256="c73ad23723c24a48156899f78dd76bd4538eba3edf9120b6c65a9528fa677126")
depends_on("py-setuptools", type="build")
depends_on("py-numpy@1.8:", type=("build", "run"))
depends_on("py-scipy", type=("build", "run"))
depends_on("py-requests", type=("build", "run"))
depends_on("py-tornado", type=("build", "run"))
depends_on("py-pyzmq", type=("build", "run"))
depends_on("py-six", type=("build", "run"))
depends_on("py-jsonpatch", type=("build", "run"))
depends_on("py-websocket-client", type=("build", "run"))
depends_on("py-torch@0.3.1:", type=("build", "run"))
depends_on("pil", type=("build", "run"))
depends_on("py-torchfile", type=("build", "run"))