summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2011-08-17 21:47:03 +0200
committerjvoisin2011-08-17 21:47:03 +0200
commit9ff16c94ed6e8cabd6bd3143b6b05593e67328a8 (patch)
tree6aa10c06a02fac79a0baf773358fa0d8c214c2cf
parent429ef8c99586ab6c4e74e627ab45f634971fde7b (diff)
Correct setup.py
-rw-r--r--MANIFEST.in6
-rwxr-xr-xsetup.py4
2 files changed, 5 insertions, 5 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index b525485..da862c7 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,3 +1,3 @@
1include README mat-cli mat-gui 1include README FORMAT LICENSE mat-cli mat-gui
2graft mat 2recursive-include mat *.py
3recursive-include test * 3recursive-include test *.py clean.* dirty.*
diff --git a/setup.py b/setup.py
index 8fdd923..a9b68a3 100755
--- a/setup.py
+++ b/setup.py
@@ -9,6 +9,6 @@ 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'], 12 packages=['mat', 'mat.hachoir_editor', 'mat.pdfrw', 'mat.bencode', 'mat.tarfile'],
13 script=['mat-cli', 'mat-gui'] 13 scripts=['mat-cli', 'mat-gui']
14 ) 14 )