spack/var/spack/repos/builtin/packages/py-deepecho/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

27 lines
985 B
Python

# 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 PyDeepecho(PythonPackage):
"""DeepEcho is a Synthetic Data Generation Python library
for mixed-type, multivariate time series."""
homepage = "https://github.com/sdv-dev/DeepEcho"
pypi = "deepecho/deepecho-0.3.0.post1.tar.gz"
version(
"0.3.0.post1", sha256="9f67373a435b5bcd84441c53eae87a2ba17a27574419a59191f92198f400b914"
)
depends_on("python@3.6:3.9", type=("build", "run"))
depends_on("py-setuptools", type="build")
depends_on("py-pytest-runner@2.11.1:", type="build")
depends_on("py-numpy@1.20.0:1", type=("build", "run"))
depends_on("py-pandas@1.1.3:1", type=("build", "run"))
depends_on("py-torch@1.8.0:1", type=("build", "run"))
depends_on("py-tqdm@4.15:4", type=("build", "run"))