Mercurial > libervia-desktop
diff libervia/desktop/__init__.py @ 0:9754c1d6f4f4 draft default tip
Libervia Desktop initial commit
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 12 Jul 2024 14:13:36 +0200 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libervia/desktop/__init__.py Fri Jul 12 14:13:36 2024 +0200 @@ -0,0 +1,43 @@ +#!/usr/bin/env python3 + +# Libervia Desktop-Kivy +# Copyright (C) 2016-2021 Jérôme Poisson (goffi@goffi.org) + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero 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 Affero General Public License for more details. + +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +import os.path + + +__version__ = "0.9.0.dev0" + + +class Global: + + def __init__(self): + self._host: "main.LiberviaDesktopApp|None" = None + + @property + def host(self): + return self._host + + +G = Global() + +# this import must be done after G is created +from .core import main + + +def run(): + host = G._host = main.LiberviaDesktopApp() + host.run()