medpython 1.2.0__cp314-cp314-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.

Potentially problematic release.


This version of medpython might be problematic. Click here for more details.

AlgoMarker/__init__.py ADDED
@@ -0,0 +1,12 @@
1
+ """""" # start delvewheel patch
2
+ def _delvewheel_patch_1_13_0():
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_13_0()
9
+ del _delvewheel_patch_1_13_0
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_13_0():
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_13_0()
9
+ del _delvewheel_patch_1_13_0
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__ ;