diff options
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 44 |
1 files changed, 22 insertions, 22 deletions
| @@ -7,33 +7,33 @@ from DistUtilsExtra.command import * | |||
| 7 | 7 | ||
| 8 | __version__ = '0.5.3' | 8 | __version__ = '0.5.3' |
| 9 | 9 | ||
| 10 | #Remove MANIFEST file, since distutils | 10 | # Remove MANIFEST file, since distutils |
| 11 | #doesn't properly update it when | 11 | # doesn't properly update it when |
| 12 | #the contents of directories changes. | 12 | # the contents of directories changes. |
| 13 | if os.path.exists('MANIFEST'): | 13 | if os.path.exists('MANIFEST'): |
| 14 | os.remove('MANIFEST') | 14 | os.remove('MANIFEST') |
| 15 | 15 | ||
| 16 | setup( | 16 | setup( |
| 17 | name = 'MAT', | 17 | name='MAT', |
| 18 | version = __version__, | 18 | version=__version__, |
| 19 | description = 'Metadata Anonymisation Toolkit', | 19 | description='Metadata Anonymisation Toolkit', |
| 20 | long_description = 'A Metadata Anonymisation Toolkit in Python, using python-hachoir', | 20 | long_description='A Metadata Anonymisation Toolkit in Python, using python-hachoir', |
| 21 | author = 'jvoisin', | 21 | author='jvoisin', |
| 22 | author_email = 'julien.voisin@dustri.org', | 22 | author_email='julien.voisin@dustri.org', |
| 23 | platforms = 'linux', | 23 | platforms='linux', |
| 24 | license = 'GPLv2', | 24 | license='GPLv2', |
| 25 | url = 'https://mat.boum.org', | 25 | url='https://mat.boum.org', |
| 26 | packages = ['libmat', 'libmat.hachoir_editor', 'libmat.bencode'], | 26 | packages=['libmat', 'libmat.hachoir_editor', 'libmat.bencode'], |
| 27 | scripts = ['mat', 'mat-gui'], | 27 | scripts=['mat', 'mat-gui'], |
| 28 | data_files = [ | 28 | data_files=[ |
| 29 | ( 'share/applications', ['mat.desktop'] ), | 29 | ('share/applications', ['mat.desktop']), |
| 30 | ( 'share/mat', ['data/FORMATS', 'data/mat.glade'] ), | 30 | ('share/mat', ['data/FORMATS', 'data/mat.glade']), |
| 31 | ( 'share/pixmaps', ['data/mat.png'] ), | 31 | ('share/pixmaps', ['data/mat.png']), |
| 32 | ( 'share/doc/mat', ['README', 'README.security'] ), | 32 | ('share/doc/mat', ['README', 'README.security']), |
| 33 | ( 'share/man/man1', ['mat.1', 'mat-gui.1'] ), | 33 | ('share/man/man1', ['mat.1', 'mat-gui.1']), |
| 34 | ( 'share/nautilus-python/extensions', ['nautilus/nautilus-mat.py']) | 34 | ('share/nautilus-python/extensions', ['nautilus/nautilus-mat.py']) |
| 35 | ], | 35 | ], |
| 36 | cmdclass = { | 36 | cmdclass={ |
| 37 | 'build': build_extra.build_extra, | 37 | 'build': build_extra.build_extra, |
| 38 | 'build_i18n': build_i18n.build_i18n, | 38 | 'build_i18n': build_i18n.build_i18n, |
| 39 | 'build_help': build_help.build_help, | 39 | 'build_help': build_help.build_help, |
