-
Notifications
You must be signed in to change notification settings - Fork 0
/
gen_gtkmm_run.py
executable file
·43 lines (38 loc) · 1.54 KB
/
gen_gtkmm_run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
'''
Module
gen_gtkmm_run.py
Copyright
Copyright (C) 2021 - 2024 Vladimir Roncevic <elektron.ronca@gmail.com>
gen_gtkmm is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
gen_gtkmm is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program. If not, see <http://www.gnu.org/licenses/>.
Info
Main entry point for tool gen_gtkmm.
'''
import sys
from typing import List
try:
from gen_gtkmm import GenGtkMM
except ImportError as ats_error_message:
# Force close python ATS ##################################################
sys.exit(f'\n{__file__}\n{ats_error_message}\n')
__author__ = 'Vladimir Roncevic'
__copyright__ = '(C) 2024, https://electux.github.io/gen_gtkmm'
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation']
__license__ = 'https://github.com/electux/gen_gtkmm/blob/dev/LICENSE'
__version__ = '1.1.6'
__maintainer__ = 'Vladimir Roncevic'
__email__ = 'elektron.ronca@gmail.com'
__status__ = 'Updated'
if __name__ == '__main__':
TOOL: GenGtkMM = GenGtkMM(verbose=False)
TOOL.process(verbose=False)