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 (>= 10), dh-python,
               python-all, python3-all,
               python-setuptools, python3-setuptools,
               python-chardet, python3-chardet,
               python-hypothesis, python3-hypothesis
Standards-Version: 4.1.1
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
Testsuite: autopkgtest-pkg-python

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.