summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTails developers2013-07-13 10:00:41 +0000
committerjvoisin2013-07-13 13:10:50 +0200
commitf03dbf33f84e513bdd396fb8e13255fac5834a7d (patch)
treeeefec89133007f1b753cd85f796d530a8466ebc1
parent8eb411fec22bcbc35869fb79f2e5071c99f0000a (diff)
setup.py: remove dependency on MAT
Chicken and eggs problem...
-rwxr-xr-xsetup.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index f4accba..2faa570 100755
--- a/setup.py
+++ b/setup.py
@@ -5,8 +5,6 @@ import os
5from distutils.core import setup 5from distutils.core import setup
6from DistUtilsExtra.command import * 6from DistUtilsExtra.command import *
7 7
8from MAT import mat
9
10#Remove MANIFEST file, since distutils 8#Remove MANIFEST file, since distutils
11#doesn't properly update it when 9#doesn't properly update it when
12#the contents of directories changes. 10#the contents of directories changes.
@@ -15,10 +13,10 @@ if os.path.exists('MANIFEST'):
15 13
16setup( 14setup(
17 name = 'MAT', 15 name = 'MAT',
18 version = mat.__version__, 16 version = '0.4',
19 description = 'Metadata Anonymisation Toolkit', 17 description = 'Metadata Anonymisation Toolkit',
20 long_description = 'A Metadata Anonymisation Toolkit in Python, using python-hachoir', 18 long_description = 'A Metadata Anonymisation Toolkit in Python, using python-hachoir',
21 author = mat.__author__, 19 author = 'jvoisin',
22 author_email = 'julien.voisin@dustri.org', 20 author_email = 'julien.voisin@dustri.org',
23 platforms = 'linux', 21 platforms = 'linux',
24 license = 'GPLv2', 22 license = 'GPLv2',