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 22c0895 commit 7638be6Copy full SHA for 7638be6
setup.py
@@ -102,7 +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 [])
+ + (["*.dylib"] if os.name == "Darwin" else [])
106
+ ["LICENSE.txt", "LICENSE-3RD-PARTY.txt"],
107
"cv2.data": ["*.xml"],
108
}
@@ -117,7 +117,7 @@ def main():
117
)
118
+
119
(
120
- [r"lib/libOrbbecSDK\..*\.dylib"]
+ [r"bin/libOrbbecSDK.*\.dylib"]
121
if os.name == "Darwin"
122
else []
123
0 commit comments