diff options
| author | jvoisin | 2012-01-01 19:43:36 +0100 |
|---|---|---|
| committer | jvoisin | 2012-01-01 19:43:36 +0100 |
| commit | 073ddcd0d824488fb9060d1f3dd237e2a75af360 (patch) | |
| tree | f4d56ecdcbc3ef76449c04be5a2e78b8ac19aa4a /setup.py | |
| parent | 74055e66ac1a5d79e04aee899c7dc0a224ae310d (diff) | |
Add more metadata to setup.py
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 44 |
1 files changed, 28 insertions, 16 deletions
| @@ -1,20 +1,32 @@ | |||
| 1 | #!/usr/bin/env python | 1 | #!/usr/bin/env python |
| 2 | 2 | ||
| 3 | import os | ||
| 4 | |||
| 3 | from distutils.core import setup | 5 | from distutils.core import setup |
| 4 | 6 | ||
| 5 | setup(name='MAT', | 7 | from 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', | 12 | if 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'], | 15 | setup( |
| 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 | ) | ||
