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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
Source: cython
Section: python
Priority: optional
Maintainer: Python Applications Packaging Team <python-apps-team@lists.alioth.debian.org>
Uploaders: Ondrej Certik <ondrej@certik.cz>, Yaroslav Halchenko <debian@onerussian.com>
Build-Depends: debhelper (>= 7.0.50~),
dh-python,
dpkg-dev (>= 1.16.1~),
python-all-dev (>= 2.6.6-3~), python-all-dbg,
help2man (>= 1.37.1~),
python3-sphinx,
python-numpy (>= 1:1.12.1-3.1) <!nocheck>,
python3-all-dev,
python3-all-dbg,
python3-numpy (>= 1:1.12.1-3.1) <!nocheck>,
gdb,
Standards-Version: 4.3.0
Homepage: http://cython.org/
Vcs-Git: https://salsa.debian.org/python-team/applications/cython.git
Vcs-Browser: https://salsa.debian.org/python-team/applications/cython
Package: cython
Architecture: any
Depends: ${python:Depends}, ${misc:Depends}, ${shlibs:Depends}
Recommends: python-dev, gcc
Suggests: cython-doc
Description: C-Extensions for Python
Cython is a language that makes writing C extensions for the Python language as
easy as Python itself. Cython is based on the well-known Pyrex, but supports
more cutting edge functionality and optimizations.
.
The Cython language is very close to the Python language, but Cython
additionally supports calling C functions and declaring C types on variables
and class attributes. This allows the compiler to generate very efficient C
code from Cython code.
.
This makes Cython the ideal language for wrapping external C libraries, and
for fast C modules that speed up the execution of Python code.
Package: cython-dbg
Architecture: any
Section: debug
Depends: ${python:Depends}, ${misc:Depends}, ${shlibs:Depends}, cython (= ${binary:Version})
Description: C-Extensions for Python - debug build
This package contains Cython libraries built against versions of
Python configured with --pydebug.
Package: cython3
Architecture: any
Depends: ${python3:Depends}, ${misc:Depends}, ${shlibs:Depends}
Recommends: python3-dev, gcc
Suggests: cython-doc
Description: C-Extensions for Python 3
Cython is a language that makes writing C extensions for the Python language as
easy as Python itself. Cython is based on the well-known Pyrex, but supports
more cutting edge functionality and optimizations.
.
The Cython language is very close to the Python language, but Cython
additionally supports calling C functions and declaring C types on variables
and class attributes. This allows the compiler to generate very efficient C
code from Cython code.
.
This makes Cython the ideal language for wrapping external C libraries, and
for fast C modules that speed up the execution of Python code.
Package: cython3-dbg
Architecture: any
Section: debug
Depends: ${python3:Depends}, ${misc:Depends}, ${shlibs:Depends}, cython3 (= ${binary:Version})
Description: C-Extensions for Python 3 - debug build
This package contains Cython libraries built against versions of
Python configured with --pydebug.
Package: cython-doc
Architecture: all
Multi-Arch: foreign
Section: doc
Depends: ${misc:Depends}, libjs-jquery, libjs-underscore
Suggests: cython
Description: C-Extensions for Python - documentation
This package contains documentation for Cython.
|