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/AlgoMarker.py +872 -0
- AlgoMarker/__init__.py +12 -0
- med/Release/_medpython.pyd +0 -0
- med/__init__.py +12 -0
- med/_medpython.pyd +0 -0
- med/med.py +4 -0
- med/medpython.py +3995 -0
- medpython-1.2.0.dist-info/DELVEWHEEL +2 -0
- medpython-1.2.0.dist-info/METADATA +201 -0
- medpython-1.2.0.dist-info/RECORD +16 -0
- medpython-1.2.0.dist-info/WHEEL +5 -0
- medpython-1.2.0.dist-info/licenses/LICENCE +21 -0
- medpython-1.2.0.dist-info/top_level.txt +2 -0
- medpython.libs/concrt140-b5f14f08cfeabe717a4945429e207076.dll +0 -0
- medpython.libs/msvcp140-a4c2229bdc2a2a630acdc095b4d86008.dll +0 -0
- medpython.libs/vcomp140-f96f3a14d88d8846f31f3ab38a490304.dll +0 -0
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