summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetup.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index b40a22e..439c99c 100755
--- a/setup.py
+++ b/setup.py
@@ -5,6 +5,8 @@ import os
5from distutils.core import setup 5from distutils.core import setup
6from DistUtilsExtra.command import * 6from DistUtilsExtra.command import *
7 7
8__version__ = '0.4'
9
8#Remove MANIFEST file, since distutils 10#Remove MANIFEST file, since distutils
9#doesn't properly update it when 11#doesn't properly update it when
10#the contents of directories changes. 12#the contents of directories changes.
@@ -13,7 +15,7 @@ if os.path.exists('MANIFEST'):
13 15
14setup( 16setup(
15 name = 'MAT', 17 name = 'MAT',
16 version = '0.4', 18 version = __version__,
17 description = 'Metadata Anonymisation Toolkit', 19 description = 'Metadata Anonymisation Toolkit',
18 long_description = 'A Metadata Anonymisation Toolkit in Python, using python-hachoir', 20 long_description = 'A Metadata Anonymisation Toolkit in Python, using python-hachoir',
19 author = 'jvoisin', 21 author = 'jvoisin',