This repository has been archived by the owner on Jul 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coolero.py
executable file
·37 lines (32 loc) · 1.63 KB
/
coolero.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
#!/usr/bin/env python3
# Coolero - monitor and control your cooling and other devices
# Copyright (c) 2022 Guy Boldon
# |
# This program 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.
# |
# This program 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 <https://www.gnu.org/licenses/>.
# ----------------------------------------------------------------------------------------------------------------------
# NOTE: This file is a placeholder for easy script execution of Coolero and to help building with Nuitka
# nuitka-project: --standalone
# nuitka-project: --follow-imports
# nuitka-project: --include-data-dir=coolero/config=coolero_data/config
# nuitka-project: --include-data-dir=coolero/resources=coolero_data/resources
# nuitka-project: --plugin-enable=pyside6,pylint-warnings,numpy
# nuitka-project: --include-module=coolero.services.liquidctl_device_extractors
# nuitka-project: --static-libpython=yes
# nuitka-project: --lto=no
# nuitka-project: --prefer-source-code
# nuitka-project: --python-flag=-S,-O,no_docstrings
# nuitka-project: --linux-onefile-icon=metadata/org.coolero.Coolero.png
from coolero.app import main
if __name__ == "__main__":
main()