summaryrefslogtreecommitdiff
path: root/setup.py
blob: 8c7d44d6c44f2362146c5a1113f6fb7244e3118c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python

from distutils.core import setup

setup(name='MAT',
      version='0.1',
      description='Metadata Anonymisation Toolkit',
      author='Julien (jvoisin) Voisin',
      author_email='julien.voisin@dustri.org',
      license='GPLv2',
      url='https://gitweb.torproject.org/user/jvoisin/mat.git',
      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'] ),
          ]
     )