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
|
Source: binaryornot
Section: python
Priority: optional
Maintainer: Vincent Bernat <bernat@debian.org>
Uploaders: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Build-Depends: debhelper (>= 7.0.50~), dh-python,
python-all, python3-all,
python-setuptools, python3-setuptools,
python-chardet, python3-chardet,
python-hypothesis, python3-hypothesis
Standards-Version: 3.9.6
Homepage: https://github.com/audreyr/binaryornot
Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/binaryornot.git
Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/binaryornot.git
Package: python-binaryornot
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}
Description: check if a file is binary or text (Python 2 module)
This Python package provides a function to check if a file is a text
file or a binary file. It uses the same heuristic as file(1) by
looking at the first 1024 bytes of the file and checks that all
characters are printable.
.
This package contains the Python 2 module.
Package: python3-binaryornot
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends}
Description: check if a file is binary or text (Python 3 module)
This Python package provides a function to check if a file is a text
file or a binary file. It uses the same heuristic as file(1) by
looking at the first 1024 bytes of the file and checks that all
characters are printable.
.
This package contains the Python 3 module.
|