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 57 58 59 60 61 62 63 64 65
|
Source: sep
Maintainer: Debian Astronomy Team <debian-astro-maintainers@lists.alioth.debian.org>
Uploaders: Ole Streicher <olebole@debian.org>
Section: python
Priority: optional
Build-Depends: cmake,
cython3,
debhelper-compat (= 13),
dh-python,
python3-all-dev,
python3-astropy <!nocheck>,
python3-numpy,
python3-pytest <!nocheck>,
python3-setuptools
Standards-Version: 4.6.1
Vcs-Browser: https://salsa.debian.org/debian-astro-team/sep
Vcs-Git: https://salsa.debian.org/debian-astro-team/sep.git
Homepage: https://github.com/kbarbary/sep
Rules-Requires-Root: no
Package: libsep0
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
${shlibs:Depends}
Description: C library for source extraction and photometry
SEP makes the core algorithms of Source Extractor available as a
library of stand-alone functions and classes. These operate
directly on in-memory arrays (no FITS files or configuration files).
The code is derived from the Source Extractor code base (written in
C) and aims to produce results compatible with Source Extractor
whenever possible.
.
This package contains the shared library.
Package: libsep-dev
Architecture: any
Section: libdevel
Depends: ${misc:Depends},
${shlibs:Depends},
libsep0 (= ${binary:Version})
Description: C library for source extraction and photometry (development files)
SEP makes the core algorithms of Source Extractor available as a
library of stand-alone functions and classes. These operate
directly on in-memory arrays (no FITS files or configuration files).
The code is derived from the Source Extractor code base (written in
C) and aims to produce results compatible with Source Extractor
whenever possible.
Package: python3-sep
Architecture: any
Depends: ${misc:Depends},
${python3:Depends},
${shlibs:Depends},
libsep0 (= ${binary:Version})
Description: Python library for source extraction and photometry
SEP makes the core algorithms of Source Extractor available as a
library of stand-alone functions and classes. These operate
directly on in-memory arrays (no FITS files or configuration files).
The code is derived from the Source Extractor code base (written in
C) and aims to produce results compatible with Source Extractor
whenever possible.
.
This Python module that wraps the C library in a Pythonic API. The
Python wrapper operates on NumPy arrays.
|