summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorjvoisin2015-07-25 17:14:23 +0200
committerjvoisin2015-07-25 17:14:23 +0200
commit6ba3e3f20d7d52895bc44f9fc35b068cfce47133 (patch)
tree15df2aca17d56d941c6376ef729e0c1fea4c396f /setup.py
parent85e6279d16af063e5150c7cf4bd491185b8ae788 (diff)
_MASSIVE_ pep8 revamp
Thank you so much PyCharm
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py44
1 files changed, 22 insertions, 22 deletions
diff --git a/setup.py b/setup.py
index 362e2a8..72a216f 100755
--- a/setup.py
+++ b/setup.py
@@ -7,33 +7,33 @@ from DistUtilsExtra.command import *
7 7
8__version__ = '0.5.3' 8__version__ = '0.5.3'
9 9
10#Remove MANIFEST file, since distutils 10# Remove MANIFEST file, since distutils
11#doesn't properly update it when 11# doesn't properly update it when
12#the contents of directories changes. 12# the contents of directories changes.
13if os.path.exists('MANIFEST'): 13if os.path.exists('MANIFEST'):
14 os.remove('MANIFEST') 14 os.remove('MANIFEST')
15 15
16setup( 16setup(
17 name = 'MAT', 17 name='MAT',
18 version = __version__, 18 version=__version__,
19 description = 'Metadata Anonymisation Toolkit', 19 description='Metadata Anonymisation Toolkit',
20 long_description = 'A Metadata Anonymisation Toolkit in Python, using python-hachoir', 20 long_description='A Metadata Anonymisation Toolkit in Python, using python-hachoir',
21 author = 'jvoisin', 21 author='jvoisin',
22 author_email = 'julien.voisin@dustri.org', 22 author_email='julien.voisin@dustri.org',
23 platforms = 'linux', 23 platforms='linux',
24 license = 'GPLv2', 24 license='GPLv2',
25 url = 'https://mat.boum.org', 25 url='https://mat.boum.org',
26 packages = ['libmat', 'libmat.hachoir_editor', 'libmat.bencode'], 26 packages=['libmat', 'libmat.hachoir_editor', 'libmat.bencode'],
27 scripts = ['mat', 'mat-gui'], 27 scripts=['mat', 'mat-gui'],
28 data_files = [ 28 data_files=[
29 ( 'share/applications', ['mat.desktop'] ), 29 ('share/applications', ['mat.desktop']),
30 ( 'share/mat', ['data/FORMATS', 'data/mat.glade'] ), 30 ('share/mat', ['data/FORMATS', 'data/mat.glade']),
31 ( 'share/pixmaps', ['data/mat.png'] ), 31 ('share/pixmaps', ['data/mat.png']),
32 ( 'share/doc/mat', ['README', 'README.security'] ), 32 ('share/doc/mat', ['README', 'README.security']),
33 ( 'share/man/man1', ['mat.1', 'mat-gui.1'] ), 33 ('share/man/man1', ['mat.1', 'mat-gui.1']),
34 ( 'share/nautilus-python/extensions', ['nautilus/nautilus-mat.py']) 34 ('share/nautilus-python/extensions', ['nautilus/nautilus-mat.py'])
35 ], 35 ],
36 cmdclass = { 36 cmdclass={
37 'build': build_extra.build_extra, 37 'build': build_extra.build_extra,
38 'build_i18n': build_i18n.build_i18n, 38 'build_i18n': build_i18n.build_i18n,
39 'build_help': build_help.build_help, 39 'build_help': build_help.build_help,