summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2011-08-19 16:54:19 +0200
committerjvoisin2011-08-19 16:54:19 +0200
commita006362ae25cc0fa03e143cda1b3123ea3e01722 (patch)
tree21d20ab0a1936743f386ceb662d777d972ae2f3f
parent11c09cfab5472cce3e97a3bc4c69fc87f24b4490 (diff)
Add the desktop file in the setup.py
-rwxr-xr-xsetup.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index a9b68a3..86d085e 100755
--- a/setup.py
+++ b/setup.py
@@ -10,5 +10,8 @@ setup(name='MAT',
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', 'mat.tarfile'],
13 scripts=['mat-cli', 'mat-gui'] 13 scripts=['mat-cli', 'mat-gui'],
14 data_files=[
15 ( 'share/applications/', [ 'mat.desktop' ] ),
16 ]
14 ) 17 )