diff options
author | Andrew W Elble <aweits@rit.edu> | 2021-03-01 14:03:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-01 19:03:03 +0000 |
commit | 987b5a5b6f839761f19cbdcbc7a866f181a7868d (patch) | |
tree | 1bd5fa794ad9f82698136b2e4ec24202c1de586f | |
parent | 1abfebb5e942a4ed4c3ea97c14fcf06915da5069 (diff) | |
download | spack-987b5a5b6f839761f19cbdcbc7a866f181a7868d.tar.gz spack-987b5a5b6f839761f19cbdcbc7a866f181a7868d.tar.bz2 spack-987b5a5b6f839761f19cbdcbc7a866f181a7868d.tar.xz spack-987b5a5b6f839761f19cbdcbc7a866f181a7868d.zip |
py-motmetrics: new package (#22023)
* py-motmetrics: new package
* dep updates
-rw-r--r-- | var/spack/repos/builtin/packages/py-motmetrics/package.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-motmetrics/package.py b/var/spack/repos/builtin/packages/py-motmetrics/package.py new file mode 100644 index 0000000000..73dc3d7ba6 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-motmetrics/package.py @@ -0,0 +1,25 @@ +# Copyright 2013-2021 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) + + +class PyMotmetrics(PythonPackage): + """The py-motmetrics library provides a Python implementation of + metrics for benchmarking multiple object trackers (MOT).""" + + homepage = "https://github.com/cheind/py-motmetrics" + pypi = "motmetrics/motmetrics-1.2.0.tar.gz" + + version('1.2.0', sha256='7328d8468c948400b38fcc212f3e448bc1f2fdfc727e170d85a029e49f1cdbc6') + + depends_on('py-setuptools', type='build') + depends_on('py-numpy@1.12.1:', type=('build', 'run')) + depends_on('py-pandas@0.23.1:', type=('build', 'run')) + depends_on('py-scipy@0.19.0:', type=('build', 'run')) + depends_on('py-xmltodict@0.12.0:', type=('build', 'run')) + depends_on('py-enum34', when='^python@:2.999', type=('build', 'run')) + depends_on('py-flake8', type=('build', 'run')) + depends_on('py-flake8-import-order', type=('build', 'run')) + depends_on('py-pytest', type=('build', 'run')) + depends_on('py-pytest-benchmark', type=('build', 'run')) |