Skip to content

Commit 2acccfe

Browse files
committed
miseen place de la structure pour bcaslonlymod
1 parent 34ed877 commit 2acccfe

3 files changed

Lines changed: 42 additions & 0 deletions

File tree

OnlyMod/BcaslOnlyMod/__init__.py

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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+

OnlyMod/BcaslOnlyMod/app.py

Whitespace-only changes.

OnlyMod/BcaslOnlyMod/gui.py

Whitespace-only changes.

0 commit comments

Comments
 (0)