pyorbbec 1.0.1.23__tar.gz → 1.0.1.24__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.
- {pyorbbec-1.0.1.23/pyorbbec.egg-info → pyorbbec-1.0.1.24}/PKG-INFO +1 -1
- {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24/pyorbbec.egg-info}/PKG-INFO +1 -1
- {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/setup.py +7 -7
- {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/LICENSE +0 -0
- {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/README.md +0 -0
- {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/OrbbecSDKConfig.xml +0 -0
- {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/extensions/depthengine/libdepthengine.so +0 -0
- {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/extensions/depthengine/libdepthengine.so.2.0 +0 -0
- {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/extensions/filters/libFilterProcessor.so +0 -0
- {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/extensions/filters/libob_priv_filter.so +0 -0
- {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/extensions/firmwareupdater/libfirmwareupdater.so +0 -0
- {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/extensions/frameprocessor/libob_frame_processor.so +0 -0
- {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/libOrbbecSDK.so +0 -0
- {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/libOrbbecSDK.so.2 +0 -0
- {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/libOrbbecSDK.so.2.4.3 +0 -0
- {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/pyorbbecsdk.cpython-38-x86_64-linux-gnu.so +0 -0
- {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/pyorbbec.egg-info/SOURCES.txt +0 -0
- {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/pyorbbec.egg-info/dependency_links.txt +0 -0
- {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/pyorbbec.egg-info/not-zip-safe +0 -0
- {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/pyorbbec.egg-info/top_level.txt +0 -0
- {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/pyproject.toml +0 -0
- {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/setup.cfg +0 -0
- {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/test/test_context.py +0 -0
- {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/test/test_device.py +0 -0
- {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/test/test_pipeline.py +0 -0
- {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/test/test_sensor_control.py +0 -0
@@ -72,9 +72,9 @@ class CustomSdist(sdist):
|
|
72
72
|
# 调用原始sdist方法创建基础发布树
|
73
73
|
super().make_release_tree(base_dir, files)
|
74
74
|
|
75
|
-
# 复制
|
76
|
-
lib_source = '
|
77
|
-
lib_dest = os.path.join(base_dir, '
|
75
|
+
# 复制pyorbbec/lib目录到发布树
|
76
|
+
lib_source = 'pyorbbec/lib'
|
77
|
+
lib_dest = os.path.join(base_dir, 'pyorbbec/lib')
|
78
78
|
|
79
79
|
if os.path.exists(lib_source):
|
80
80
|
os.makedirs(os.path.dirname(lib_dest), exist_ok=True)
|
@@ -87,8 +87,8 @@ class CustomSdist(sdist):
|
|
87
87
|
# 获取所有需要包含的库文件
|
88
88
|
def get_lib_files():
|
89
89
|
lib_files = []
|
90
|
-
if os.path.exists('
|
91
|
-
for root, _, files in os.walk('
|
90
|
+
if os.path.exists('pyorbbec/lib'):
|
91
|
+
for root, _, files in os.walk('pyorbbec/lib'):
|
92
92
|
for file in files:
|
93
93
|
lib_files.append(os.path.join(root, file))
|
94
94
|
return lib_files
|
@@ -96,12 +96,12 @@ def get_lib_files():
|
|
96
96
|
|
97
97
|
setup(
|
98
98
|
name='pyorbbec',
|
99
|
-
version='1.0.1.
|
99
|
+
version='1.0.1.24',
|
100
100
|
author='zhonghong',
|
101
101
|
author_email='zhonghong@orbbec.com',
|
102
102
|
description='pyorbbecsdk is a python wrapper for the OrbbecSDK',
|
103
103
|
long_description='',
|
104
|
-
ext_modules=[PrebuiltExtension('pyorbbec', '
|
104
|
+
ext_modules=[PrebuiltExtension('pyorbbec', 'pyorbbec/lib')],
|
105
105
|
cmdclass={
|
106
106
|
'build_ext': CustomBuildExt,
|
107
107
|
'sdist': CustomSdist,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/extensions/filters/libob_priv_filter.so
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|