summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetup.py44
1 files changed, 28 insertions, 16 deletions
diff --git a/setup.py b/setup.py
index 36fcec5..f86e2f1 100755
--- a/setup.py
+++ b/setup.py
@@ -1,20 +1,32 @@
1#!/usr/bin/env python 1#!/usr/bin/env python
2 2
3import os
4
3from distutils.core import setup 5from distutils.core import setup
4 6
5setup(name='MAT', 7from mat import mat
6 version='0.1', 8
7 description='Metadata Anonymisation Toolkit', 9#Remove MANIFEST file, since distutils
8 author='Julien (jvoisin) Voisin', 10#doesn't properly update it when
9 author_email='julien.voisin@dustri.org', 11#the contents of directories changes.
10 license='GPLv2', 12if os.path.exists('MANIFEST'):
11 url='https://mat.boum.org', 13 os.remove('MANIFEST')
12 packages=['mat', 'mat.hachoir_editor', 'mat.bencode', 14
13 'mat.tarfile'], 15setup(
14 scripts=['mat-cli', 'mat-gui'], 16 name = 'MAT',
15 data_files=[ 17 version = mat.__version__,
16 ( 'share/applications', [ 'mat.desktop' ] ), 18 description = 'Metadata Anonymisation Toolkit',
17 ( 'share/mat', ['FORMATS'] ), 19 long_decription = 'A Metadata Anonymisation Toolkit in Python, using python-hachoir',
18 ( 'share/doc/mat', ['README', 'TODO'] ), 20 author = mat.__author__,
19 ] 21 author_email = 'julien.voisin@dustri.org',
20 ) 22 plateforms = 'linux'
23 license = 'GPLv2',
24 url = 'https://mat.boum.org',
25 packages = ['mat', 'mat.hachoir_editor', 'mat.bencode', 'mat.tarfile'],
26 scripts = ['mat-cli', 'mat-gui'],
27 data_files = [
28 ( 'share/applications', [ 'mat.desktop' ] ),
29 ( 'share/mat', ['FORMATS'] ),
30 ( 'share/doc/mat', ['README', 'TODO'] ),
31 ],
32)