medpython 1.1.1__cp310-cp310-win_amd64.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.
AlgoMarker/__init__.py ADDED
@@ -0,0 +1,12 @@
1
+ """""" # start delvewheel patch
2
+ def _delvewheel_patch_1_11_2():
3
+ import os
4
+ if os.path.isdir(libs_dir := os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir, 'medpython.libs'))):
5
+ os.add_dll_directory(libs_dir)
6
+
7
+
8
+ _delvewheel_patch_1_11_2()
9
+ del _delvewheel_patch_1_11_2
10
+ # end delvewheel patch
11
+
12
+ from .AlgoMarker import AlgoMarker
Binary file
med/__init__.py ADDED
@@ -0,0 +1,12 @@
1
+ """""" # start delvewheel patch
2
+ def _delvewheel_patch_1_11_2():
3
+ import os
4
+ if os.path.isdir(libs_dir := os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir, 'medpython.libs'))):
5
+ os.add_dll_directory(libs_dir)
6
+
7
+
8
+ _delvewheel_patch_1_11_2()
9
+ del _delvewheel_patch_1_11_2
10
+ # end delvewheel patch
11
+
12
+ from .med import *
med/_medpython.pyd ADDED
Binary file
med/med.py ADDED
@@ -0,0 +1,4 @@
1
+ from .medpython import *
2
+ from . import medpython as _med
3
+ __doc__=_med.__doc__
4
+ __all__=_med.__all__ ;