a2edff0028146a99d9593d8a891f08092229d570
[findit] / src / mvc / models / about.py
1 from gtkmvc import Model
2
3 from __main__ import __version__, __progname__
4
5
6 class AboutModel(Model):
7
8     def __init__(self):
9         Model.__init__(self)
10
11         self.progname = __progname__
12         self.version = __version__
13
14         self.authors = [    'Alex Taker\n   * Email: alteker@gmail.com\n',
15                         'Eugene Gagarin\n   * Email: mosfet07@ya.ru\n',
16                         'Alexandr Popov\n   * Email: popov2al@gmail.com' ]
17
18         self.comments = 'Tool for find some information on computer.'
19
20         self.license = \
21 'This program is free software; you can redistribute it and/or\nmodify it \
22 under the terms of the GNU General Public License\nas published by the Free \
23 Software Foundation; either version 3\nof the License, or (at your option) \
24 any later version.'