File: control

package info (click to toggle)
python-flor 1.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: python: 183; sh: 6; makefile: 5
file content (28 lines) | stat: -rw-r--r-- 999 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
Source: python-flor
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Michael Fladischer <fladi@debian.org>
Build-Depends:
 debhelper-compat (= 13),
 dh-python,
 python3-all,
 python3-pytest,
 python3-setuptools,
Standards-Version: 4.6.0.1
Homepage: https://github.com/DCSO/flor/
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-flor
Vcs-Git: https://salsa.debian.org/python-team/packages/python-flor.git
Rules-Requires-Root: no

Package: python3-flor
Architecture: all
Depends: ${misc:Depends},
         ${python3:Depends}
Description: efficient Bloom filter library (Python3 version)
 Flor implements a Bloom filter class. A Bloom filter has a capacity (n) and a
 false positive probability (p) that gives the probability that a filter filled
 to capacity (i.e. with (n) distinct values inserted) will return True for an
 element that is not in the filter.
 .
 This package contains the Python 3 version of the library.