File: control

package info (click to toggle)
fast-histogram 0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 144 kB
  • sloc: ansic: 445; python: 205; makefile: 4
file content (33 lines) | stat: -rw-r--r-- 1,268 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
Source: fast-histogram
Section: python
Priority: optional
Maintainer: Debian Astronomy Maintainers <debian-astro-maintainers@lists.alioth.debian.org>
Uploaders: Josue Ortega <josue@debian.org>
Build-Depends: debhelper (>= 11),
 dh-python,
 python3-all,
 python3-all-dev,
 python3-setuptools,
 python3-numpy,
 python3-hypothesis,
 python3-pytest
Standards-Version: 4.3.0
Rules-Requires-Root: no
Homepage: https://github.com/astrofrog/fast-histogram
Vcs-Git: https://salsa.debian.org/debian-astro-team/python-fast-histogram.git
Vcs-Browser: https://salsa.debian.org/debian-astro-team/python-fast-histogram

Package: python3-fast-histogram
Architecture: any
Depends: ${misc:Depends},
 ${python3:Depends},
 ${shlibs:Depends},
 python3-numpy
Description: Fast 1D and 2D histogram functions in Python
 fast-histogram aims to provide simple and fast histogram functions for
 regular bins that don't compromise on performance. It doesn't do
 anything complicated - it just implements a simple histogram algorithm in C and
 keeps it simple. The aim is to have functions that are fast but also robust and
 reliable. The result is a 1D histogram function here that is 7-15x faster than
 numpy.histogram, and a 2D histogram function that is 20-25x faster than
 numpy.histogram2d.