diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2020-04-19 10:02:21 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2020-04-19 10:02:21 +0000 |
commit | 5ab14722848e2dd290c5d8e290dcdbe0c7d6dcb7 (patch) | |
tree | 3cf53478e341c5a9331db94d0b2edaadc8c30132 | |
parent | Adding upstream version 1.4.13. (diff) | |
download | identify-5ab14722848e2dd290c5d8e290dcdbe0c7d6dcb7.tar.xz identify-5ab14722848e2dd290c5d8e290dcdbe0c7d6dcb7.zip |
Adding upstream version 1.4.14.upstream/1.4.14
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | identify/extensions.py | 2 | ||||
-rw-r--r-- | setup.cfg | 2 |
3 files changed, 6 insertions, 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 diff --git a/identify/extensions.py b/identify/extensions.py index 21d4681..578b4c1 100644 --- a/identify/extensions.py +++ b/identify/extensions.py @@ -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 |