File: control

package info (click to toggle)
python-tinyalign 0.2-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 112 kB
  • sloc: python: 140; sh: 24; makefile: 6
file content (34 lines) | stat: -rw-r--r-- 1,424 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Source: python-tinyalign
Section: science
Priority: optional
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Steffen Moeller <moeller@debian.org>
Build-Depends: debhelper-compat (= 12),
               dh-python,
               cython3,
               python3-setuptools,
               python3-setuptools-scm,
               python3-all-dev,
               python3-pytest
Standards-Version: 4.5.0
Homepage: https://github.com/marcelm/tinyalign
Vcs-Browser: https://salsa.debian.org/med-team/python-tinyalign
Vcs-Git: https://salsa.debian.org/med-team/python-tinyalign.git
Testsuite: autopkgtest-pkg-python
Rules-Requires-Root: no

Package: python3-tinyalign
Architecture: any
Section: python
Depends: ${python3:Depends}, ${misc:Depends}, ${shlibs:Depends}
Description: numerical representation of differences between strings
 A small Python module providing edit distance (aka Levenshtein distance,
 that is, counting insertions, deletions and substitutions) and Hamming
 distance computation.
 .
 Its main purpose is to speed up computation of edit distance by allowing
 to specify a maximum number of differences maxdiff (banding). If that
 parameter is provided, the returned edit distance is anly accurate up
 to maxdiff. That is, if the actual edit distance is higher than maxdiff,
 a value larger than maxdiff is returned, but not necessarily the actual
 edit distance.