wolfhece 2.1.23__py3-none-any.whl → 2.1.27__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wolfhece/PyPalette.py +26 -10
- wolfhece/acceptability/Parallels.py +106 -0
- wolfhece/acceptability/__init__.py +3 -0
- wolfhece/acceptability/acceptability.py +477 -0
- wolfhece/acceptability/acceptability1.py +211 -0
- wolfhece/acceptability/acceptability_gui.py +318 -0
- wolfhece/acceptability/cli.py +150 -0
- wolfhece/acceptability/func.py +1427 -0
- wolfhece/apps/version.py +1 -1
- wolfhece/cli.py +5 -0
- wolfhece/libs/WolfOGL.c +16164 -2680
- wolfhece/libs/WolfOGL.pyx +357 -0
- wolfhece/libs/wolfogl.cp310-win_amd64.pyd +0 -0
- wolfhece/pyviews.py +3 -3
- wolfhece/wolf_array.py +406 -157
- wolfhece/wolfresults_2D.py +2 -2
- {wolfhece-2.1.23.dist-info → wolfhece-2.1.27.dist-info}/METADATA +2 -1
- {wolfhece-2.1.23.dist-info → wolfhece-2.1.27.dist-info}/RECORD +21 -16
- {wolfhece-2.1.23.dist-info → wolfhece-2.1.27.dist-info}/entry_points.txt +4 -1
- wolfhece/libs/wolfogl.cp39-win_amd64.pyd +0 -0
- wolfhece/libs/wolfpy.cp39-win_amd64.pyd +0 -0
- {wolfhece-2.1.23.dist-info → wolfhece-2.1.27.dist-info}/WHEEL +0 -0
- {wolfhece-2.1.23.dist-info → wolfhece-2.1.27.dist-info}/top_level.txt +0 -0
wolfhece/apps/version.py
CHANGED
wolfhece/cli.py
CHANGED
@@ -4,6 +4,11 @@ def check():
|
|
4
4
|
from .apps.check_install import main
|
5
5
|
main()
|
6
6
|
|
7
|
+
def accept():
|
8
|
+
""" Main wolf application : Accept """
|
9
|
+
from .acceptability.cli import main
|
10
|
+
main()
|
11
|
+
|
7
12
|
def wolf():
|
8
13
|
""" Main wolf application : Map Manager"""
|
9
14
|
from .apps.wolf import main
|