Skip to content

Commit

Permalink
Another try
Browse files Browse the repository at this point in the history
  • Loading branch information
asmorkalov committed Jun 2, 2024
1 parent bb7ad9b commit fcbd6dd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ def main():
package_data = {
"cv2": ["*%s" % sysconfig.get_config_vars().get("SO"), "version.py"]
+ (["*.dll"] if os.name == "nt" else [])
+ (["*.dylib"] if os.name == "Darwin" else [])
+ ["LICENSE.txt", "LICENSE-3RD-PARTY.txt"],
"cv2.data": ["*.xml"],
}
Expand All @@ -117,8 +116,8 @@ def main():
)
+
(
[r"lib/libOrbbecSDK.dylib", r"lib/libOrbbecSDK.1.9.dylib", r"lib/libOrbbecSDK.1.9.4.dylib"]
if os.name == "Darwin"
[r"lib/libOrbbecSDK.dylib", r"lib/libOrbbecSDK.\d.\d.dylib", r"lib/libOrbbecSDK.\d.\d.\d.dylib"]
if sys.platform == "darwin" and
else []
)
+
Expand Down

0 comments on commit fcbd6dd

Please sign in to comment.