File: control

package info (click to toggle)
python-flor 1.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 100 kB
  • sloc: python: 183; makefile: 5
file content (29 lines) | stat: -rw-r--r-- 1,050 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
Source: python-flor
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Michael Fladischer <fladi@debian.org>
Build-Depends:
 debhelper-compat (= 13),
 dh-python,
 python3-all,
 python3-pytest,
 python3-setuptools,
Standards-Version: 4.5.0
Homepage: https://github.com/DCSO/flor/
Vcs-Browser: https://salsa.debian.org/python-team/modules/python-flor
Vcs-Git: https://salsa.debian.org/python-team/modules/python-flor.git
Testsuite: autopkgtest-pkg-python
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.