summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorjvoisin2011-08-30 18:29:28 +0200
committerjvoisin2011-08-30 18:29:28 +0200
commit52d403f2a7cf7ac491f5d6c2587fc594f4c1ec32 (patch)
tree3d761f647b6e3b084bf041a85f7c687dc1dd7371 /setup.py
parent38106a5aeb7a318352949fae4f5b3e72e5e33254 (diff)
The setup script should work now o/
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 2a1d230..2332505 100755
--- a/setup.py
+++ b/setup.py
@@ -9,10 +9,12 @@ setup(name='MAT',
9 author_email='julien.voisin@dustri.org', 9 author_email='julien.voisin@dustri.org',
10 license='GPLv2', 10 license='GPLv2',
11 url='https://gitweb.torproject.org/user/jvoisin/mat.git', 11 url='https://gitweb.torproject.org/user/jvoisin/mat.git',
12 packages=['mat', 'mat.hachoir_editor', 'mat.pdfrw', 'mat.bencode', 'mat.tarfile'], 12 packages=['mat', 'mat.hachoir_editor', 'mat.pdfrw', 'mat.bencode',
13 'mat.tarfile'],
13 scripts=['mat-cli', 'mat-gui'], 14 scripts=['mat-cli', 'mat-gui'],
14 data_files=[ 15 data_files=[
15 ( '/usr/share/applications/', [ 'mat.desktop' ] ), 16 ( 'share/applications', [ 'mat.desktop' ] ),
16 ( '', ['FORMATS'] ), 17 ( 'share/mat', ['FORMATS'] ),
18 ( 'share/doc/mat', ['README', 'TODO'] ),
17 ] 19 ]
18 ) 20 )