File: control

package info (click to toggle)
hnswlib 0.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 628 kB
  • sloc: cpp: 4,809; python: 1,113; makefile: 32; sh: 18
file content (56 lines) | stat: -rw-r--r-- 2,214 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Source: hnswlib
Section: science
Priority: optional
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Steffen Moeller <moeller@debian.org>,
           Étienne Mollier <emollier@debian.org>
Build-Depends: debhelper-compat (= 13),
               dh-sequence-python3,
               libpython3-all-dev,
               pybuild-plugin-pyproject,
               python3-all-dev:native,
               python3-setuptools,
               python3-pybind11,
# Native numpy is required in cross compilation context to build the wheel,
# so marking <!nocheck> is not appropriate here.  See also [1] for rationale.
# [1]: https://lists.debian.org/debian-cross/2023/01/msg00005.html
               python3-numpy:native
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/med-team/hnswlib
Vcs-Git: https://salsa.debian.org/med-team/hnswlib.git
Homepage: https://github.com/nmslib/hnswlib
Rules-Requires-Root: no

Package: python3-hnswlib
Architecture: any
Section: python
Depends: ${shlibs:Depends},
         ${misc:Depends},
         ${python3:Depends},
         python3-pybind11,
         python3-numpy
Multi-Arch: same
Description: Python bindings for hnswlib: fast approximate nearest neighbor search
 A common task in data analysis but also in scientific computations
 is to find data that is very close (multi-dimensional space) or
 similar (same thing) to a given data point. Also as heuristics for
 physics engines, it is the objects closest to you that you are
 most likely to collide with. This library knows how to do this
 fast.
 .
 This package provides a module for Python3 to the C implementation.

Package: libhnswlib-dev
Architecture: all
Section: libdevel
Depends: ${misc:Depends}
Multi-Arch: foreign
Description: fast approximate nearest neighbor search
 Header-only C++ HNSW implementation with Python bindings.
 .
 A common task in data analysis but also in scientific computations
 is to find data that is very close (multi-dimensional space) or
 similar (same thing) to a given data point. Also as heuristics for
 physics engines, it is the objects closest to you that you are
 most likely to collide with. This library knows how to do this
 fast.