no-cluely-detector 0.0.1__py3-none-any.whl → 0.0.2__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.
- no_cluely_detector/__init__.py +6 -1
- no_cluely_detector/libno_cluely_driver.dylib +0 -0
- {no_cluely_detector-0.0.1.dist-info → no_cluely_detector-0.0.2.dist-info}/METADATA +1 -1
- no_cluely_detector-0.0.2.dist-info/RECORD +7 -0
- no_cluely_detector-0.0.1.dist-info/RECORD +0 -6
- {no_cluely_detector-0.0.1.dist-info → no_cluely_detector-0.0.2.dist-info}/WHEEL +0 -0
- {no_cluely_detector-0.0.1.dist-info → no_cluely_detector-0.0.2.dist-info}/top_level.txt +0 -0
no_cluely_detector/__init__.py
CHANGED
@@ -36,6 +36,11 @@ def _find_library() -> str:
|
|
36
36
|
# Try relative to this package first
|
37
37
|
current_dir = Path(__file__).parent
|
38
38
|
lib_paths = [
|
39
|
+
# First try in the package directory (bundled with the package)
|
40
|
+
current_dir / "libno_cluely_driver.dylib",
|
41
|
+
# Then try in the parent directory (build script puts it here)
|
42
|
+
current_dir / ".." / "libno_cluely_driver.dylib",
|
43
|
+
# Then try development locations
|
39
44
|
current_dir
|
40
45
|
/ ".."
|
41
46
|
/ ".."
|
@@ -44,7 +49,7 @@ def _find_library() -> str:
|
|
44
49
|
/ "release"
|
45
50
|
/ "libno_cluely_driver.dylib",
|
46
51
|
current_dir / ".." / ".." / "target" / "release" / "libno_cluely_driver.dylib",
|
47
|
-
|
52
|
+
# Finally try system locations
|
48
53
|
Path("/usr/local/lib/libno_cluely_driver.dylib"),
|
49
54
|
Path("/opt/homebrew/lib/libno_cluely_driver.dylib"),
|
50
55
|
]
|
Binary file
|
@@ -0,0 +1,7 @@
|
|
1
|
+
no_cluely_detector/__init__.py,sha256=3pMiRcQAEgXr7xrRCBshmHDD3nfIuO69wzCssfUDj5M,13117
|
2
|
+
no_cluely_detector/libno_cluely_driver.dylib,sha256=YzpjDPx6fO_PkYrzPZfuyOuNpxKXliQLYdXoREm6-PI,400528
|
3
|
+
no_cluely_detector/py.typed,sha256=ly_OTohiB3OSMv5IvZcW13LkzgSEk-ieT7d3zlEXpdc,70
|
4
|
+
no_cluely_detector-0.0.2.dist-info/METADATA,sha256=jO8dFsybqdO6agq7eU9vCoz7zfw67oxQW1fGxzyIRtU,16899
|
5
|
+
no_cluely_detector-0.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
6
|
+
no_cluely_detector-0.0.2.dist-info/top_level.txt,sha256=BCY0tJTlX9NWuKdsapwC3nY9tnYQ_iymXuZlFpWoeAc,19
|
7
|
+
no_cluely_detector-0.0.2.dist-info/RECORD,,
|
@@ -1,6 +0,0 @@
|
|
1
|
-
no_cluely_detector/__init__.py,sha256=CpJrFN-by68C1zJ3O_XAXLqya4TrZ40-EBOENLwYOPY,12836
|
2
|
-
no_cluely_detector/py.typed,sha256=ly_OTohiB3OSMv5IvZcW13LkzgSEk-ieT7d3zlEXpdc,70
|
3
|
-
no_cluely_detector-0.0.1.dist-info/METADATA,sha256=n8N2ceZnzSNPdJhvsim43sgLweTfh_1HyigRHfvvqUk,16899
|
4
|
-
no_cluely_detector-0.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
5
|
-
no_cluely_detector-0.0.1.dist-info/top_level.txt,sha256=BCY0tJTlX9NWuKdsapwC3nY9tnYQ_iymXuZlFpWoeAc,19
|
6
|
-
no_cluely_detector-0.0.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|