no-cluely-detector 0.0.1__tar.gz → 0.0.2__tar.gz
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-0.0.2/MANIFEST.in +5 -0
- {no_cluely_detector-0.0.1 → no_cluely_detector-0.0.2}/PKG-INFO +1 -1
- no_cluely_detector-0.0.2/libno_cluely_driver.dylib +0 -0
- {no_cluely_detector-0.0.1 → no_cluely_detector-0.0.2}/no_cluely_detector/__init__.py +6 -1
- no_cluely_detector-0.0.2/no_cluely_detector/libno_cluely_driver.dylib +0 -0
- {no_cluely_detector-0.0.1 → no_cluely_detector-0.0.2}/no_cluely_detector.egg-info/PKG-INFO +1 -1
- {no_cluely_detector-0.0.1 → no_cluely_detector-0.0.2}/no_cluely_detector.egg-info/SOURCES.txt +3 -0
- {no_cluely_detector-0.0.1 → no_cluely_detector-0.0.2}/pyproject.toml +3 -3
- {no_cluely_detector-0.0.1 → no_cluely_detector-0.0.2}/README.md +0 -0
- {no_cluely_detector-0.0.1 → no_cluely_detector-0.0.2}/no_cluely_detector/py.typed +0 -0
- {no_cluely_detector-0.0.1 → no_cluely_detector-0.0.2}/no_cluely_detector.egg-info/dependency_links.txt +0 -0
- {no_cluely_detector-0.0.1 → no_cluely_detector-0.0.2}/no_cluely_detector.egg-info/requires.txt +0 -0
- {no_cluely_detector-0.0.1 → no_cluely_detector-0.0.2}/no_cluely_detector.egg-info/top_level.txt +0 -0
- {no_cluely_detector-0.0.1 → no_cluely_detector-0.0.2}/setup.cfg +0 -0
Binary file
|
@@ -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
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "no-cluely-detector"
|
7
|
-
version = "0.0.
|
7
|
+
version = "0.0.2"
|
8
8
|
authors = [{ name = "No-Cluely Team" }]
|
9
9
|
description = "Detect Cluely employee monitoring software and its evasion techniques"
|
10
10
|
readme = "README.md"
|
@@ -58,14 +58,14 @@ where = ["."]
|
|
58
58
|
include = ["no_cluely_detector*"]
|
59
59
|
|
60
60
|
[tool.setuptools.package-data]
|
61
|
-
no_cluely_detector = ["py.typed"]
|
61
|
+
no_cluely_detector = ["py.typed", "libno_cluely_driver.dylib"]
|
62
62
|
|
63
63
|
[tool.black]
|
64
64
|
line-length = 88
|
65
65
|
target-version = ['py38']
|
66
66
|
|
67
67
|
[tool.mypy]
|
68
|
-
python_version = "0.0.
|
68
|
+
python_version = "0.0.2"
|
69
69
|
strict = true
|
70
70
|
|
71
71
|
[tool.pytest.ini_options]
|
File without changes
|
File without changes
|
File without changes
|
{no_cluely_detector-0.0.1 → no_cluely_detector-0.0.2}/no_cluely_detector.egg-info/requires.txt
RENAMED
File without changes
|
{no_cluely_detector-0.0.1 → no_cluely_detector-0.0.2}/no_cluely_detector.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|