# -*- mode: python ; coding: utf-8 -*- block_cipher = None a = Analysis( ['main.py'], pathex=['D:/Trae_space/pyKinectAzure'], binaries=[ # FemtoBolt相关库文件 ('dll/femtobolt/k4a.dll', 'dll/femtobolt'), # K4A动态库 ('dll/femtobolt/k4arecord.dll', 'dll/femtobolt'), # K4A录制库 ('dll/femtobolt/depthengine_2_0.dll', 'dll/femtobolt'), # 深度引擎 ('dll/femtobolt/OrbbecSDK.dll', 'dll/femtobolt'), # Orbbec SDK ('dll/femtobolt/k4a.lib', 'dll/femtobolt'), # K4A静态库 ('dll/femtobolt/k4arecord.lib', 'dll/femtobolt'), # K4A录制静态库 ('dll/femtobolt/k4arecorder.exe', 'dll/femtobolt'), # K4A录制工具 ('dll/femtobolt/k4aviewer.exe', 'dll/femtobolt'), # K4A查看器 # SMiTSense相关库文件 ('dll/smitsense/SMiTSenseUsb-F3.0.dll', 'dll/smitsense'), # SMiTSense传感器库 ('dll/smitsense/Wrapper.dll', 'dll/smitsense'), # SMiTSense传感器库包装类 ], hiddenimports=[ 'flask', 'flask_socketio', 'flask_cors', 'cv2', 'numpy', 'pandas', 'scipy', 'matplotlib', 'seaborn', 'sklearn', 'PIL', 'reportlab', 'sqlite3', 'configparser', 'logging', 'threading', 'queue', 'base64', 'psutil', 'pykinect_azure', 'pykinect_azure.k4a', 'pykinect_azure.k4abt', 'pykinect_azure.k4arecord', 'pykinect_azure.pykinect', 'pykinect_azure.utils', 'pykinect_azure._k4a', 'pykinect_azure._k4abt', 'pyserial', 'requests', 'yaml', 'click', 'colorama', 'tqdm', 'database', 'device_manager', 'utils', 'eventlet', 'socketio', 'engineio', 'engineio.async_drivers.threading', 'engineio.async_drivers.eventlet', 'engineio.async_eventlet', 'socketio.async_eventlet', 'greenlet', 'gevent', 'gevent.socket', 'gevent.select', 'dns', 'dns.resolver', 'dns.reversename', 'dns.e164', ], hookspath=[], hooksconfig={}, runtime_hooks=[], excludes=[], win_no_prefer_redirects=False, win_private_assemblies=False, cipher=block_cipher, noarchive=False, ) pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) exe = EXE( pyz, a.scripts, [], exclude_binaries=True, name='BodyBalanceBackend', debug=False, bootloader_ignore_signals=False, strip=False, upx=True, upx_exclude=[], runtime_tmpdir=None, console=True, disable_windowed_traceback=False, argv_emulation=False, target_arch=None, codesign_identity=None, entitlements_file=None, icon=None ) coll = COLLECT( exe, a.binaries, a.zipfiles, a.datas, strip=False, upx=True, upx_exclude=[], name='BodyBalanceBackend' )