1
0
Fork 0

Merging upstream version 1.4.14.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-12 20:53:03 +01:00
parent 8859bd7ffd
commit 0f2d099248
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
3 changed files with 6 additions and 1 deletions

View file

@ -10,6 +10,9 @@ File identification library for Python.
Given a file (or some information about a file), return a set of standardized
tags identifying what the file is.
## Installation
`pip install identify`
## Usage
### With a file on disk

View file

@ -4,6 +4,8 @@ from __future__ import unicode_literals
EXTENSIONS = {
'adoc': {'text', 'asciidoc'},
'asciidoc': {'text', 'asciidoc'},
'apinotes': {'text', 'apinotes'},
'asar': {'binary', 'asar'},
'bash': {'text', 'shell', 'bash'},

View file

@ -1,6 +1,6 @@
[metadata]
name = identify
version = 1.4.13
version = 1.4.14
description = File identification library for Python
long_description = file: README.md
long_description_content_type = text/markdown