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.
Files changed (26) hide show
  1. {pyorbbec-1.0.1.23/pyorbbec.egg-info → pyorbbec-1.0.1.24}/PKG-INFO +1 -1
  2. {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24/pyorbbec.egg-info}/PKG-INFO +1 -1
  3. {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/setup.py +7 -7
  4. {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/LICENSE +0 -0
  5. {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/README.md +0 -0
  6. {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/OrbbecSDKConfig.xml +0 -0
  7. {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/extensions/depthengine/libdepthengine.so +0 -0
  8. {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/extensions/depthengine/libdepthengine.so.2.0 +0 -0
  9. {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/extensions/filters/libFilterProcessor.so +0 -0
  10. {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/extensions/filters/libob_priv_filter.so +0 -0
  11. {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/extensions/firmwareupdater/libfirmwareupdater.so +0 -0
  12. {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/extensions/frameprocessor/libob_frame_processor.so +0 -0
  13. {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/libOrbbecSDK.so +0 -0
  14. {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/libOrbbecSDK.so.2 +0 -0
  15. {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/libOrbbecSDK.so.2.4.3 +0 -0
  16. {pyorbbec-1.0.1.23/install → pyorbbec-1.0.1.24/pyorbbec}/lib/pyorbbecsdk.cpython-38-x86_64-linux-gnu.so +0 -0
  17. {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/pyorbbec.egg-info/SOURCES.txt +0 -0
  18. {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/pyorbbec.egg-info/dependency_links.txt +0 -0
  19. {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/pyorbbec.egg-info/not-zip-safe +0 -0
  20. {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/pyorbbec.egg-info/top_level.txt +0 -0
  21. {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/pyproject.toml +0 -0
  22. {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/setup.cfg +0 -0
  23. {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/test/test_context.py +0 -0
  24. {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/test/test_device.py +0 -0
  25. {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/test/test_pipeline.py +0 -0
  26. {pyorbbec-1.0.1.23 → pyorbbec-1.0.1.24}/test/test_sensor_control.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyorbbec
3
- Version: 1.0.1.23
3
+ Version: 1.0.1.24
4
4
  Summary: pyorbbecsdk is a python wrapper for the OrbbecSDK
5
5
  Author: zhonghong
6
6
  Author-email: zhonghong@orbbec.com
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyorbbec
3
- Version: 1.0.1.23
3
+ Version: 1.0.1.24
4
4
  Summary: pyorbbecsdk is a python wrapper for the OrbbecSDK
5
5
  Author: zhonghong
6
6
  Author-email: zhonghong@orbbec.com
@@ -72,9 +72,9 @@ class CustomSdist(sdist):
72
72
  # 调用原始sdist方法创建基础发布树
73
73
  super().make_release_tree(base_dir, files)
74
74
 
75
- # 复制install/lib目录到发布树
76
- lib_source = 'install/lib'
77
- lib_dest = os.path.join(base_dir, 'install/lib')
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('install/lib'):
91
- for root, _, files in os.walk('install/lib'):
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.23',
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', 'install/lib')],
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