|
| 1 | +# SPDX-License-Identifier: Apache-2.0 |
| 2 | +# Copyright 2026 Ague Samuel Amen |
| 3 | +# |
| 4 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +# you may not use this file except in compliance with the License. |
| 6 | +# You may obtain a copy of the License at |
| 7 | +# |
| 8 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +# |
| 10 | +# Unless required by applicable law or agreed to in writing, software |
| 11 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +# See the License for the specific language governing permissions and |
| 14 | +# limitations under the License. |
| 15 | + |
| 16 | +""" |
| 17 | +BcaslOnlyMod - Module autonome pour gérer les plugins BCASL |
| 18 | +
|
| 19 | +Interface complète pour exécuter et configurer les plugins BCASL |
| 20 | +indépendamment de l'application principale PyCompiler ARK. |
| 21 | +
|
| 22 | +Fournit une interface utilisateur moderne permettant de: |
| 23 | +- Découvrir et lister les plugins BCASL disponibles |
| 24 | +- Activer/désactiver les plugins |
| 25 | +- Réordonner l'exécution des plugins |
| 26 | +- Exécuter les plugins de pré-compilation |
| 27 | +- Afficher les rapports d'exécution |
| 28 | +""" |
| 29 | + |
| 30 | +from __future__ import annotations |
| 31 | + |
| 32 | +from .gui import BcaslStandaloneGui |
| 33 | +from .app import BcaslOnlyModApp |
| 34 | + |
| 35 | +__version__ = "1.0.0" |
| 36 | +__author__ = "Ague Samuel Amen" |
| 37 | + |
| 38 | +__all__ = [ |
| 39 | + "BcaslStandaloneGui", |
| 40 | + "BcaslOnlyModApp", |
| 41 | +] |
| 42 | + |
0 commit comments