diff options
| author | jvoisin | 2015-12-02 17:07:19 +0100 |
|---|---|---|
| committer | jvoisin | 2015-12-02 17:22:45 +0100 |
| commit | 80ece3001895ea13d50915a5215fd47e313bab4c (patch) | |
| tree | c5ede43867c5d7fe2af4178b34b0e6dc219f6aac /setup.py | |
| parent | 3cf80e8b5d6faf410e9ad3aad77f23cf6418a587 (diff) | |
Remove hachoir from MAT.
This (huge) commit removes completely hachoir from MAT.
Audio files are now processed with mutagen, and images
with exiftool, since the main python imaging library (PIL)
isn't super-great to deal with metadata (and damaged/non-standard
files).
Package maintainer should change the dependencies to reflect this.
Diffstat (limited to '')
| -rwxr-xr-x | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -31,13 +31,13 @@ setup( | |||
| 31 | name='MAT', | 31 | name='MAT', |
| 32 | version=__version__, | 32 | version=__version__, |
| 33 | description='Metadata Anonymisation Toolkit', | 33 | description='Metadata Anonymisation Toolkit', |
| 34 | long_description='A Metadata Anonymisation Toolkit in Python, using python-hachoir', | 34 | long_description='A Metadata Anonymisation Toolkit in Python', |
| 35 | author='jvoisin', | 35 | author='jvoisin', |
| 36 | author_email='julien.voisin@dustri.org', | 36 | author_email='julien.voisin@dustri.org', |
| 37 | platforms='linux', | 37 | platforms='linux', |
| 38 | license='GPLv2', | 38 | license='GPLv2', |
| 39 | url='https://mat.boum.org', | 39 | url='https://mat.boum.org', |
| 40 | packages=['libmat', 'libmat.hachoir_editor', 'libmat.bencode'], | 40 | packages=['libmat', 'libmat.bencode'], |
| 41 | scripts=['mat', 'mat-gui'], | 41 | scripts=['mat', 'mat-gui'], |
| 42 | data_files=[ | 42 | data_files=[ |
| 43 | ('share/applications', ['mat.desktop']), | 43 | ('share/applications', ['mat.desktop']), |
| @@ -55,5 +55,5 @@ setup( | |||
| 55 | 'build_icons': build_icons.build_icons, | 55 | 'build_icons': build_icons.build_icons, |
| 56 | 'clean': clean_i18n.clean_i18n, | 56 | 'clean': clean_i18n.clean_i18n, |
| 57 | }, | 57 | }, |
| 58 | requires=['mutagen', 'gi', 'pdfrw', 'hachoir_core', 'hachoir_parser'] | 58 | requires=['mutagen', 'gi', 'pdfrw'] |
| 59 | ) | 59 | ) |
