We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 882af5b commit 22c0895Copy full SHA for 22c0895
setup.py
@@ -102,6 +102,7 @@ def main():
102
package_data = {
103
"cv2": ["*%s" % sysconfig.get_config_vars().get("SO"), "version.py"]
104
+ (["*.dll"] if os.name == "nt" else [])
105
+ + (["*.dynlib"] if os.name == "Darwin" else [])
106
+ ["LICENSE.txt", "LICENSE-3RD-PARTY.txt"],
107
"cv2.data": ["*.xml"],
108
}
@@ -116,8 +117,8 @@ def main():
116
117
)
118
+
119
(
- [r"lib/libOrbbecSDK\.\d\.\d\.\d.dylib"]
120
- if os.name == "Darwin" and platform.machine() == "ARM64"
+ [r"lib/libOrbbecSDK\..*\.dylib"]
121
+ if os.name == "Darwin"
122
else []
123
124
0 commit comments