New package: py-deepecho (#28488)
* [py-deepecho] created template * [py-deepecho] - added dependencies - added homepage - added description - removed fixmes - updated copyright * [py-deepecho] flake8 * [py-deepecho] removed .999 * [py-deepecho] added dependency on py-pytest-runner
This commit is contained in:
parent
08fb190264
commit
bae2a2660e
1 changed files with 25 additions and 0 deletions
25
var/spack/repos/builtin/packages/py-deepecho/package.py
Normal file
25
var/spack/repos/builtin/packages/py-deepecho/package.py
Normal file
|
@ -0,0 +1,25 @@
|
|||
# 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 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.18.0:1.19', type=('build', 'run'), when='^python@:3.6')
|
||||
depends_on('py-numpy@1.20.0:1', type=('build', 'run'), when='^python@3.7:')
|
||||
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'))
|
Loading…
Reference in a new issue