New package: py-distance (#29546)
* [py-distance] created template * [py-distance] - added homepage - added description - removed fixmes * [py-distance] depends on setuptools
This commit is contained in:
parent
6c03e1efb6
commit
00313f9e20
1 changed files with 20 additions and 0 deletions
20
var/spack/repos/builtin/packages/py-distance/package.py
Normal file
20
var/spack/repos/builtin/packages/py-distance/package.py
Normal 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 import *
|
||||
|
||||
|
||||
class PyDistance(PythonPackage):
|
||||
"""This package provides helpers for computing similarities
|
||||
between arbitrary sequences. Included metrics are
|
||||
Levenshtein, Hamming, Jaccard, and Sorensen distance, plus
|
||||
some bonuses."""
|
||||
|
||||
homepage = "https://github.com/doukremt/distance"
|
||||
pypi = "Distance/Distance-0.1.3.tar.gz"
|
||||
|
||||
version('0.1.3', sha256='60807584f5b6003f5c521aa73f39f51f631de3be5cccc5a1d67166fcbf0d4551')
|
||||
|
||||
depends_on('py-setuptools', type='build')
|
Loading…
Reference in a new issue