summaryrefslogtreecommitdiff
path: root/setup.py
blob: f86e2f10bbdc27924dcb04a0d911fa26374fa85e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python

import os

from distutils.core import setup

from mat import mat

#Remove MANIFEST file, since distutils
#doesn't properly update it when
#the contents of directories changes.
if os.path.exists('MANIFEST'):
    os.remove('MANIFEST')

setup(
    name              = 'MAT',
    version           = mat.__version__,
    description       = 'Metadata Anonymisation Toolkit',
    long_decription   = 'A Metadata Anonymisation Toolkit in Python, using python-hachoir',
    author            = mat.__author__,
    author_email      = 'julien.voisin@dustri.org',
    plateforms        = 'linux'
    license           = 'GPLv2',
    url               = 'https://mat.boum.org',
    packages          = ['mat', 'mat.hachoir_editor', 'mat.bencode', 'mat.tarfile'],
    scripts           = ['mat-cli', 'mat-gui'],
    data_files        = [
        ( 'share/applications', [ 'mat.desktop' ] ),
        ( 'share/mat', ['FORMATS'] ),
        ( 'share/doc/mat', ['README', 'TODO'] ),
    ],
)