Merging upstream version 1.4.14.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
8859bd7ffd
commit
0f2d099248
3 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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'},
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue