mocap-desktop-gui 0.7.3__py3-none-any.whl → 0.8.0__py3-none-any.whl
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.
- mocap_desktop_gui/__init__.py +4 -4
- mocap_desktop_gui/axengine_1729502090_533108441.py +246 -0
- mocap_desktop_gui/gen/rc_icons.py +4 -4
- mocap_desktop_gui/gen/rc_qml.py +4 -4
- mocap_desktop_gui/gen/rc_style.py +4 -4
- mocap_desktop_gui/main.py +3 -3
- mocap_desktop_gui/mc/__init__.py +4 -4
- mocap_desktop_gui/mc/bld_fbx_2_glb.py +4 -4
- mocap_desktop_gui/mc/camera_models.py +4 -4
- mocap_desktop_gui/mc/mc_app_manager.py +4 -4
- mocap_desktop_gui/mc/{mc_take_run.py → mc_auth_core.py} +4 -4
- mocap_desktop_gui/mc/mc_auth_service.py +18 -0
- mocap_desktop_gui/mc/mc_calib.py +4 -4
- mocap_desktop_gui/mc/mc_cam_ui_states.py +4 -4
- mocap_desktop_gui/mc/mc_cloud_service.py +18 -0
- mocap_desktop_gui/mc/mc_common_paths.py +4 -4
- mocap_desktop_gui/mc/mc_context.py +4 -4
- mocap_desktop_gui/mc/mc_file_util.py +4 -4
- mocap_desktop_gui/mc/mc_import_folder.py +4 -4
- mocap_desktop_gui/mc/mc_project.py +4 -4
- mocap_desktop_gui/mc/mc_project_manager.py +4 -4
- mocap_desktop_gui/mc/mc_sync_media_player.py +4 -4
- mocap_desktop_gui/mc/mc_sync_video_decoder_service.py +4 -4
- mocap_desktop_gui/mc/mc_sync_video_paint_item.py +4 -4
- mocap_desktop_gui/mc/mc_take.py +4 -4
- mocap_desktop_gui/mc/mc_take_cloud_job.py +18 -0
- mocap_desktop_gui/mc/mc_take_cloud_job_action.py +18 -0
- mocap_desktop_gui/mc/mc_take_cloud_job_calib.py +18 -0
- mocap_desktop_gui/mc/mc_take_list_model.py +4 -4
- mocap_desktop_gui/mc/mc_take_local_job.py +18 -0
- mocap_desktop_gui/mc/mc_take_run_common.py +4 -4
- mocap_desktop_gui/mc/mc_take_run_data_prep.py +4 -4
- mocap_desktop_gui/mc/mc_take_run_settings.py +4 -4
- mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py +4 -4
- mocap_desktop_gui/mc/mc_take_runs_local_manager.py +4 -4
- mocap_desktop_gui/mc/mc_take_runs_manager.py +4 -4
- mocap_desktop_gui/mc/mc_take_settings.py +4 -4
- mocap_desktop_gui/mc/mc_take_video_model.py +3 -3
- mocap_desktop_gui/mc/mc_task_trt_engine_gen.py +4 -4
- mocap_desktop_gui/mc/mc_worker.py +18 -0
- mocap_desktop_gui/mc/qml_engine.py +4 -4
- mocap_desktop_gui/mc/util.py +4 -4
- mocap_desktop_gui/operations/__init__.py +4 -4
- mocap_desktop_gui/sample.py +3 -3
- mocap_desktop_gui/utils/__init__.py +4 -4
- {mocap_desktop_gui-0.7.3.dist-info → mocap_desktop_gui-0.8.0.dist-info}/METADATA +4 -2
- mocap_desktop_gui-0.8.0.dist-info/RECORD +58 -0
- mocap_desktop_gui/axengine_1729168719_3593238492.py +0 -246
- mocap_desktop_gui-0.7.3.dist-info/RECORD +0 -51
- {mocap_desktop_gui-0.7.3.dist-info → mocap_desktop_gui-0.8.0.dist-info}/WHEEL +0 -0
- {mocap_desktop_gui-0.7.3.dist-info → mocap_desktop_gui-0.8.0.dist-info}/entry_points.txt +0 -0
| @@ -2,17 +2,17 @@ import os as _os | |
| 2 2 | 
             
            import sys as _sys
         | 
| 3 3 | 
             
            _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
         | 
| 4 4 | 
             
            while not _os.path.exists(_os.path.join(_axeSearchPath,
         | 
| 5 | 
            -
                ' | 
| 5 | 
            +
                'axengine_1729502090_533108441.py')):
         | 
| 6 6 | 
             
                _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
         | 
| 7 7 | 
             
                if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
         | 
| 8 8 | 
             
                    break
         | 
| 9 9 | 
             
                _axeSearchPath = _newAxeSearchPath
         | 
| 10 10 | 
             
            try:
         | 
| 11 11 | 
             
                _sys.path.append(_axeSearchPath)
         | 
| 12 | 
            -
                import  | 
| 12 | 
            +
                import axengine_1729502090_533108441 as _axengine
         | 
| 13 13 | 
             
            except Exception as e:
         | 
| 14 14 | 
             
                raise Exception('Failed to load AxEngine!') from e
         | 
| 15 15 | 
             
            finally:
         | 
| 16 16 | 
             
                _sys.path.pop()
         | 
| 17 | 
            -
            from  | 
| 18 | 
            -
            _axengine._axe_run( | 
| 17 | 
            +
            from axengine_1729502090_533108441 import WupiError, WupiLicenseError, WupiErrorCode
         | 
| 18 | 
            +
            _axengine._axe_run(79, globals())
         | 
| @@ -2,17 +2,17 @@ import os as _os | |
| 2 2 | 
             
            import sys as _sys
         | 
| 3 3 | 
             
            _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
         | 
| 4 4 | 
             
            while not _os.path.exists(_os.path.join(_axeSearchPath,
         | 
| 5 | 
            -
                ' | 
| 5 | 
            +
                'axengine_1729502090_533108441.py')):
         | 
| 6 6 | 
             
                _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
         | 
| 7 7 | 
             
                if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
         | 
| 8 8 | 
             
                    break
         | 
| 9 9 | 
             
                _axeSearchPath = _newAxeSearchPath
         | 
| 10 10 | 
             
            try:
         | 
| 11 11 | 
             
                _sys.path.append(_axeSearchPath)
         | 
| 12 | 
            -
                import  | 
| 12 | 
            +
                import axengine_1729502090_533108441 as _axengine
         | 
| 13 13 | 
             
            except Exception as e:
         | 
| 14 14 | 
             
                raise Exception('Failed to load AxEngine!') from e
         | 
| 15 15 | 
             
            finally:
         | 
| 16 16 | 
             
                _sys.path.pop()
         | 
| 17 | 
            -
            from  | 
| 18 | 
            -
            _axengine._axe_run( | 
| 17 | 
            +
            from axengine_1729502090_533108441 import WupiError, WupiLicenseError, WupiErrorCode
         | 
| 18 | 
            +
            _axengine._axe_run(357, globals())
         | 
| @@ -2,17 +2,17 @@ import os as _os | |
| 2 2 | 
             
            import sys as _sys
         | 
| 3 3 | 
             
            _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
         | 
| 4 4 | 
             
            while not _os.path.exists(_os.path.join(_axeSearchPath,
         | 
| 5 | 
            -
                ' | 
| 5 | 
            +
                'axengine_1729502090_533108441.py')):
         | 
| 6 6 | 
             
                _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
         | 
| 7 7 | 
             
                if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
         | 
| 8 8 | 
             
                    break
         | 
| 9 9 | 
             
                _axeSearchPath = _newAxeSearchPath
         | 
| 10 10 | 
             
            try:
         | 
| 11 11 | 
             
                _sys.path.append(_axeSearchPath)
         | 
| 12 | 
            -
                import  | 
| 12 | 
            +
                import axengine_1729502090_533108441 as _axengine
         | 
| 13 13 | 
             
            except Exception as e:
         | 
| 14 14 | 
             
                raise Exception('Failed to load AxEngine!') from e
         | 
| 15 15 | 
             
            finally:
         | 
| 16 16 | 
             
                _sys.path.pop()
         | 
| 17 | 
            -
            from  | 
| 18 | 
            -
            _axengine._axe_run( | 
| 17 | 
            +
            from axengine_1729502090_533108441 import WupiError, WupiLicenseError, WupiErrorCode
         | 
| 18 | 
            +
            _axengine._axe_run(419, globals())
         | 
| @@ -2,17 +2,17 @@ import os as _os | |
| 2 2 | 
             
            import sys as _sys
         | 
| 3 3 | 
             
            _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
         | 
| 4 4 | 
             
            while not _os.path.exists(_os.path.join(_axeSearchPath,
         | 
| 5 | 
            -
                ' | 
| 5 | 
            +
                'axengine_1729502090_533108441.py')):
         | 
| 6 6 | 
             
                _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
         | 
| 7 7 | 
             
                if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
         | 
| 8 8 | 
             
                    break
         | 
| 9 9 | 
             
                _axeSearchPath = _newAxeSearchPath
         | 
| 10 10 | 
             
            try:
         | 
| 11 11 | 
             
                _sys.path.append(_axeSearchPath)
         | 
| 12 | 
            -
                import  | 
| 12 | 
            +
                import axengine_1729502090_533108441 as _axengine
         | 
| 13 13 | 
             
            except Exception as e:
         | 
| 14 14 | 
             
                raise Exception('Failed to load AxEngine!') from e
         | 
| 15 15 | 
             
            finally:
         | 
| 16 16 | 
             
                _sys.path.pop()
         | 
| 17 | 
            -
            from  | 
| 18 | 
            -
            _axengine._axe_run( | 
| 17 | 
            +
            from axengine_1729502090_533108441 import WupiError, WupiLicenseError, WupiErrorCode
         | 
| 18 | 
            +
            _axengine._axe_run(292, globals())
         | 
| @@ -2,17 +2,17 @@ import os as _os | |
| 2 2 | 
             
            import sys as _sys
         | 
| 3 3 | 
             
            _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
         | 
| 4 4 | 
             
            while not _os.path.exists(_os.path.join(_axeSearchPath,
         | 
| 5 | 
            -
                ' | 
| 5 | 
            +
                'axengine_1729502090_533108441.py')):
         | 
| 6 6 | 
             
                _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
         | 
| 7 7 | 
             
                if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
         | 
| 8 8 | 
             
                    break
         | 
| 9 9 | 
             
                _axeSearchPath = _newAxeSearchPath
         | 
| 10 10 | 
             
            try:
         | 
| 11 11 | 
             
                _sys.path.append(_axeSearchPath)
         | 
| 12 | 
            -
                import  | 
| 12 | 
            +
                import axengine_1729502090_533108441 as _axengine
         | 
| 13 13 | 
             
            except Exception as e:
         | 
| 14 14 | 
             
                raise Exception('Failed to load AxEngine!') from e
         | 
| 15 15 | 
             
            finally:
         | 
| 16 16 | 
             
                _sys.path.pop()
         | 
| 17 | 
            -
            from  | 
| 18 | 
            -
            _axengine._axe_run( | 
| 17 | 
            +
            from axengine_1729502090_533108441 import WupiError, WupiLicenseError, WupiErrorCode
         | 
| 18 | 
            +
            _axengine._axe_run(437, globals())
         | 
| @@ -2,17 +2,17 @@ import os as _os | |
| 2 2 | 
             
            import sys as _sys
         | 
| 3 3 | 
             
            _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
         | 
| 4 4 | 
             
            while not _os.path.exists(_os.path.join(_axeSearchPath,
         | 
| 5 | 
            -
                ' | 
| 5 | 
            +
                'axengine_1729502090_533108441.py')):
         | 
| 6 6 | 
             
                _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
         | 
| 7 7 | 
             
                if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
         | 
| 8 8 | 
             
                    break
         | 
| 9 9 | 
             
                _axeSearchPath = _newAxeSearchPath
         | 
| 10 10 | 
             
            try:
         | 
| 11 11 | 
             
                _sys.path.append(_axeSearchPath)
         | 
| 12 | 
            -
                import  | 
| 12 | 
            +
                import axengine_1729502090_533108441 as _axengine
         | 
| 13 13 | 
             
            except Exception as e:
         | 
| 14 14 | 
             
                raise Exception('Failed to load AxEngine!') from e
         | 
| 15 15 | 
             
            finally:
         | 
| 16 16 | 
             
                _sys.path.pop()
         | 
| 17 | 
            -
            from  | 
| 18 | 
            -
            _axengine._axe_run( | 
| 17 | 
            +
            from axengine_1729502090_533108441 import WupiError, WupiLicenseError, WupiErrorCode
         | 
| 18 | 
            +
            _axengine._axe_run(275, globals())
         | 
| @@ -2,17 +2,17 @@ import os as _os | |
| 2 2 | 
             
            import sys as _sys
         | 
| 3 3 | 
             
            _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
         | 
| 4 4 | 
             
            while not _os.path.exists(_os.path.join(_axeSearchPath,
         | 
| 5 | 
            -
                ' | 
| 5 | 
            +
                'axengine_1729502090_533108441.py')):
         | 
| 6 6 | 
             
                _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
         | 
| 7 7 | 
             
                if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
         | 
| 8 8 | 
             
                    break
         | 
| 9 9 | 
             
                _axeSearchPath = _newAxeSearchPath
         | 
| 10 10 | 
             
            try:
         | 
| 11 11 | 
             
                _sys.path.append(_axeSearchPath)
         | 
| 12 | 
            -
                import  | 
| 12 | 
            +
                import axengine_1729502090_533108441 as _axengine
         | 
| 13 13 | 
             
            except Exception as e:
         | 
| 14 14 | 
             
                raise Exception('Failed to load AxEngine!') from e
         | 
| 15 15 | 
             
            finally:
         | 
| 16 16 | 
             
                _sys.path.pop()
         | 
| 17 | 
            -
            from  | 
| 17 | 
            +
            from axengine_1729502090_533108441 import WupiError, WupiLicenseError, WupiErrorCode
         | 
| 18 18 | 
             
            _axengine._axe_run(14, globals())
         | 
| @@ -2,17 +2,17 @@ import os as _os | |
| 2 2 | 
             
            import sys as _sys
         | 
| 3 3 | 
             
            _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
         | 
| 4 4 | 
             
            while not _os.path.exists(_os.path.join(_axeSearchPath,
         | 
| 5 | 
            -
                ' | 
| 5 | 
            +
                'axengine_1729502090_533108441.py')):
         | 
| 6 6 | 
             
                _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
         | 
| 7 7 | 
             
                if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
         | 
| 8 8 | 
             
                    break
         | 
| 9 9 | 
             
                _axeSearchPath = _newAxeSearchPath
         | 
| 10 10 | 
             
            try:
         | 
| 11 11 | 
             
                _sys.path.append(_axeSearchPath)
         | 
| 12 | 
            -
                import  | 
| 12 | 
            +
                import axengine_1729502090_533108441 as _axengine
         | 
| 13 13 | 
             
            except Exception as e:
         | 
| 14 14 | 
             
                raise Exception('Failed to load AxEngine!') from e
         | 
| 15 15 | 
             
            finally:
         | 
| 16 16 | 
             
                _sys.path.pop()
         | 
| 17 | 
            -
            from  | 
| 18 | 
            -
            _axengine._axe_run( | 
| 17 | 
            +
            from axengine_1729502090_533108441 import WupiError, WupiLicenseError, WupiErrorCode
         | 
| 18 | 
            +
            _axengine._axe_run(382, globals())
         | 
| @@ -0,0 +1,18 @@ | |
| 1 | 
            +
            import os as _os
         | 
| 2 | 
            +
            import sys as _sys
         | 
| 3 | 
            +
            _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
         | 
| 4 | 
            +
            while not _os.path.exists(_os.path.join(_axeSearchPath,
         | 
| 5 | 
            +
                'axengine_1729502090_533108441.py')):
         | 
| 6 | 
            +
                _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
         | 
| 7 | 
            +
                if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
         | 
| 8 | 
            +
                    break
         | 
| 9 | 
            +
                _axeSearchPath = _newAxeSearchPath
         | 
| 10 | 
            +
            try:
         | 
| 11 | 
            +
                _sys.path.append(_axeSearchPath)
         | 
| 12 | 
            +
                import axengine_1729502090_533108441 as _axengine
         | 
| 13 | 
            +
            except Exception as e:
         | 
| 14 | 
            +
                raise Exception('Failed to load AxEngine!') from e
         | 
| 15 | 
            +
            finally:
         | 
| 16 | 
            +
                _sys.path.pop()
         | 
| 17 | 
            +
            from axengine_1729502090_533108441 import WupiError, WupiLicenseError, WupiErrorCode
         | 
| 18 | 
            +
            _axengine._axe_run(422, globals())
         | 
| @@ -2,17 +2,17 @@ import os as _os | |
| 2 2 | 
             
            import sys as _sys
         | 
| 3 3 | 
             
            _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
         | 
| 4 4 | 
             
            while not _os.path.exists(_os.path.join(_axeSearchPath,
         | 
| 5 | 
            -
                ' | 
| 5 | 
            +
                'axengine_1729502090_533108441.py')):
         | 
| 6 6 | 
             
                _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
         | 
| 7 7 | 
             
                if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
         | 
| 8 8 | 
             
                    break
         | 
| 9 9 | 
             
                _axeSearchPath = _newAxeSearchPath
         | 
| 10 10 | 
             
            try:
         | 
| 11 11 | 
             
                _sys.path.append(_axeSearchPath)
         | 
| 12 | 
            -
                import  | 
| 12 | 
            +
                import axengine_1729502090_533108441 as _axengine
         | 
| 13 13 | 
             
            except Exception as e:
         | 
| 14 14 | 
             
                raise Exception('Failed to load AxEngine!') from e
         | 
| 15 15 | 
             
            finally:
         | 
| 16 16 | 
             
                _sys.path.pop()
         | 
| 17 | 
            -
            from  | 
| 18 | 
            -
            _axengine._axe_run( | 
| 17 | 
            +
            from axengine_1729502090_533108441 import WupiError, WupiLicenseError, WupiErrorCode
         | 
| 18 | 
            +
            _axengine._axe_run(71, globals())
         | 
    
        mocap_desktop_gui/mc/util.py
    CHANGED
    
    | @@ -2,17 +2,17 @@ import os as _os | |
| 2 2 | 
             
            import sys as _sys
         | 
| 3 3 | 
             
            _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
         | 
| 4 4 | 
             
            while not _os.path.exists(_os.path.join(_axeSearchPath,
         | 
| 5 | 
            -
                ' | 
| 5 | 
            +
                'axengine_1729502090_533108441.py')):
         | 
| 6 6 | 
             
                _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
         | 
| 7 7 | 
             
                if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
         | 
| 8 8 | 
             
                    break
         | 
| 9 9 | 
             
                _axeSearchPath = _newAxeSearchPath
         | 
| 10 10 | 
             
            try:
         | 
| 11 11 | 
             
                _sys.path.append(_axeSearchPath)
         | 
| 12 | 
            -
                import  | 
| 12 | 
            +
                import axengine_1729502090_533108441 as _axengine
         | 
| 13 13 | 
             
            except Exception as e:
         | 
| 14 14 | 
             
                raise Exception('Failed to load AxEngine!') from e
         | 
| 15 15 | 
             
            finally:
         | 
| 16 16 | 
             
                _sys.path.pop()
         | 
| 17 | 
            -
            from  | 
| 18 | 
            -
            _axengine._axe_run( | 
| 17 | 
            +
            from axengine_1729502090_533108441 import WupiError, WupiLicenseError, WupiErrorCode
         | 
| 18 | 
            +
            _axengine._axe_run(257, globals())
         | 
| @@ -2,17 +2,17 @@ import os as _os | |
| 2 2 | 
             
            import sys as _sys
         | 
| 3 3 | 
             
            _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
         | 
| 4 4 | 
             
            while not _os.path.exists(_os.path.join(_axeSearchPath,
         | 
| 5 | 
            -
                ' | 
| 5 | 
            +
                'axengine_1729502090_533108441.py')):
         | 
| 6 6 | 
             
                _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
         | 
| 7 7 | 
             
                if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
         | 
| 8 8 | 
             
                    break
         | 
| 9 9 | 
             
                _axeSearchPath = _newAxeSearchPath
         | 
| 10 10 | 
             
            try:
         | 
| 11 11 | 
             
                _sys.path.append(_axeSearchPath)
         | 
| 12 | 
            -
                import  | 
| 12 | 
            +
                import axengine_1729502090_533108441 as _axengine
         | 
| 13 13 | 
             
            except Exception as e:
         | 
| 14 14 | 
             
                raise Exception('Failed to load AxEngine!') from e
         | 
| 15 15 | 
             
            finally:
         | 
| 16 16 | 
             
                _sys.path.pop()
         | 
| 17 | 
            -
            from  | 
| 18 | 
            -
            _axengine._axe_run( | 
| 17 | 
            +
            from axengine_1729502090_533108441 import WupiError, WupiLicenseError, WupiErrorCode
         | 
| 18 | 
            +
            _axengine._axe_run(549, globals())
         | 
    
        mocap_desktop_gui/sample.py
    CHANGED
    
    | @@ -2,17 +2,17 @@ import os as _os | |
| 2 2 | 
             
            import sys as _sys
         | 
| 3 3 | 
             
            _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
         | 
| 4 4 | 
             
            while not _os.path.exists(_os.path.join(_axeSearchPath,
         | 
| 5 | 
            -
                ' | 
| 5 | 
            +
                'axengine_1729502090_533108441.py')):
         | 
| 6 6 | 
             
                _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
         | 
| 7 7 | 
             
                if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
         | 
| 8 8 | 
             
                    break
         | 
| 9 9 | 
             
                _axeSearchPath = _newAxeSearchPath
         | 
| 10 10 | 
             
            try:
         | 
| 11 11 | 
             
                _sys.path.append(_axeSearchPath)
         | 
| 12 | 
            -
                import  | 
| 12 | 
            +
                import axengine_1729502090_533108441 as _axengine
         | 
| 13 13 | 
             
            except Exception as e:
         | 
| 14 14 | 
             
                raise Exception('Failed to load AxEngine!') from e
         | 
| 15 15 | 
             
            finally:
         | 
| 16 16 | 
             
                _sys.path.pop()
         | 
| 17 | 
            -
            from  | 
| 17 | 
            +
            from axengine_1729502090_533108441 import WupiError, WupiLicenseError, WupiErrorCode
         | 
| 18 18 | 
             
            _axengine._axe_run(6, globals())
         | 
| @@ -2,17 +2,17 @@ import os as _os | |
| 2 2 | 
             
            import sys as _sys
         | 
| 3 3 | 
             
            _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
         | 
| 4 4 | 
             
            while not _os.path.exists(_os.path.join(_axeSearchPath,
         | 
| 5 | 
            -
                ' | 
| 5 | 
            +
                'axengine_1729502090_533108441.py')):
         | 
| 6 6 | 
             
                _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
         | 
| 7 7 | 
             
                if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
         | 
| 8 8 | 
             
                    break
         | 
| 9 9 | 
             
                _axeSearchPath = _newAxeSearchPath
         | 
| 10 10 | 
             
            try:
         | 
| 11 11 | 
             
                _sys.path.append(_axeSearchPath)
         | 
| 12 | 
            -
                import  | 
| 12 | 
            +
                import axengine_1729502090_533108441 as _axengine
         | 
| 13 13 | 
             
            except Exception as e:
         | 
| 14 14 | 
             
                raise Exception('Failed to load AxEngine!') from e
         | 
| 15 15 | 
             
            finally:
         | 
| 16 16 | 
             
                _sys.path.pop()
         | 
| 17 | 
            -
            from  | 
| 18 | 
            -
            _axengine._axe_run( | 
| 17 | 
            +
            from axengine_1729502090_533108441 import WupiError, WupiLicenseError, WupiErrorCode
         | 
| 18 | 
            +
            _axengine._axe_run(560, globals())
         | 
| @@ -1,6 +1,6 @@ | |
| 1 1 | 
             
            Metadata-Version: 2.1
         | 
| 2 2 | 
             
            Name: mocap-desktop-gui
         | 
| 3 | 
            -
            Version: 0. | 
| 3 | 
            +
            Version: 0.8.0
         | 
| 4 4 | 
             
            Summary: 
         | 
| 5 5 | 
             
            Author: Move.ai
         | 
| 6 6 | 
             
            Requires-Python: >=3.10,<3.13
         | 
| @@ -9,11 +9,13 @@ Classifier: Programming Language :: Python :: 3.10 | |
| 9 9 | 
             
            Classifier: Programming Language :: Python :: 3.11
         | 
| 10 10 | 
             
            Classifier: Programming Language :: Python :: 3.12
         | 
| 11 11 | 
             
            Requires-Dist: PySide6 (>=6.7.2)
         | 
| 12 | 
            -
            Requires-Dist:  | 
| 12 | 
            +
            Requires-Dist: auth0-python (>=4.7.2,<5.0.0)
         | 
| 13 | 
            +
            Requires-Dist: move-ugc-python (>=1.4.1,<2.0.0)
         | 
| 13 14 | 
             
            Requires-Dist: numba (>=0.60.0,<0.61.0)
         | 
| 14 15 | 
             
            Requires-Dist: opencv-python (>=4.10.0.84,<5.0.0.0)
         | 
| 15 16 | 
             
            Requires-Dist: psutil (>=6.0.0,<7.0.0)
         | 
| 16 17 | 
             
            Requires-Dist: ruamel-yaml (>=0.18.6,<0.19.0)
         | 
| 18 | 
            +
            Requires-Dist: typer (>=0.12.5,<0.13.0)
         | 
| 17 19 | 
             
            Description-Content-Type: text/markdown
         | 
| 18 20 |  | 
| 19 21 | 
             
            # mocap-desktop-gui
         | 
| @@ -0,0 +1,58 @@ | |
| 1 | 
            +
            mocap_desktop_gui/__init__.py,sha256=jCEXt55Tqb1NRHKO_X6jZ8ZXV5mn0_KBhd30LUct944,723
         | 
| 2 | 
            +
            mocap_desktop_gui/axengine_1729502090_533108441.py,sha256=Sukhbu4fEz4fXRIOb5hpAHLrU_Fk6vbxyx810MAQyqI,415653
         | 
| 3 | 
            +
            mocap_desktop_gui/gen/rc_icons.py,sha256=4Sgl9XfzaOE8kXvnBy1o1m5C_FAncqZTd2OJJ6X9R_c,723
         | 
| 4 | 
            +
            mocap_desktop_gui/gen/rc_qml.py,sha256=7jLQfVYLvJgb9fu97sD7V00jZAtawJTHfKtvgMrZaXk,723
         | 
| 5 | 
            +
            mocap_desktop_gui/gen/rc_style.py,sha256=cRQqGA5nrjxqAw8opPQ6bC0PAIwsn191iwJG5Q4LTKc,723
         | 
| 6 | 
            +
            mocap_desktop_gui/main.py,sha256=RAeZdCXQB24n0Gmnn7H97g67pBz06hHKNZLmdC6skRU,721
         | 
| 7 | 
            +
            mocap_desktop_gui/mc/__init__.py,sha256=aYGZDi3y0J1JHySk96yfQGQG6Z1ZDUft20xC4T3vaLw,723
         | 
| 8 | 
            +
            mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=A4RsO1_SWx5-slzFM0YVUd-62JSldhFc5W0eXk6mO3Q,723
         | 
| 9 | 
            +
            mocap_desktop_gui/mc/camera_models.py,sha256=RQzcW6pgyi9S_fzLO8b_dsn-cvkEtA2CMWBN8lWTRxw,723
         | 
| 10 | 
            +
            mocap_desktop_gui/mc/mc_app_manager.py,sha256=agktAOHzsP46sj8pof0B80Wl5qAocDEAfWTUrqI-p7o,723
         | 
| 11 | 
            +
            mocap_desktop_gui/mc/mc_auth_core.py,sha256=6lfVkPgV4VUh-wVVJ_MYjOvj5M_EEZmoyadOdoYXKZw,723
         | 
| 12 | 
            +
            mocap_desktop_gui/mc/mc_auth_service.py,sha256=0M9CpAz7qpIU6Odaqd0oS1DvEzzDjEqE91fLEo9WUp8,723
         | 
| 13 | 
            +
            mocap_desktop_gui/mc/mc_calib.py,sha256=-JuVIqwTx-Z5UhEnia_LJB0V8uMrkZ-QgE8tkrTPqEc,723
         | 
| 14 | 
            +
            mocap_desktop_gui/mc/mc_cam_ui_states.py,sha256=VPwKriRHWvILeeRdVsIFyr01EBMI27Rig7UVfirq5YI,723
         | 
| 15 | 
            +
            mocap_desktop_gui/mc/mc_cloud_service.py,sha256=7EzJvTNu7-ELkB1N1BRjs0tLOI2UH9u1LjSGujn6QpA,723
         | 
| 16 | 
            +
            mocap_desktop_gui/mc/mc_common_paths.py,sha256=a2XKIenHf2MYjfQE2gHP6SOlMnALZBhAzwvK4vKCgfA,723
         | 
| 17 | 
            +
            mocap_desktop_gui/mc/mc_context.py,sha256=II0qmHFm9zd6mVjGNI_aFIdgwWzadt5S47fchhUlCcI,723
         | 
| 18 | 
            +
            mocap_desktop_gui/mc/mc_file_util.py,sha256=bKLMuxj1sGmtjRje3CnPeklpGk1iDk840OLecGjZgLY,723
         | 
| 19 | 
            +
            mocap_desktop_gui/mc/mc_import_folder.py,sha256=gqDjrI5vEDn8ARF2ETl_27sOeCRa6DQhsKV4cr7Qo9c,723
         | 
| 20 | 
            +
            mocap_desktop_gui/mc/mc_project.py,sha256=yAZ0E-6ZmVpcyAitNsA24QyEBF_gDzvHcQjoXy0_rFw,723
         | 
| 21 | 
            +
            mocap_desktop_gui/mc/mc_project_manager.py,sha256=I1G7CI-jzUuwD1t3lw9wzq2KJXnWNwU5vLHYgm88Jh0,722
         | 
| 22 | 
            +
            mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=16KZeLDD3SjXUkC8JSymCty1FSKmKfK6xkzhhSbMd60,723
         | 
| 23 | 
            +
            mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=f5-sqxuYdz2Yezjs6ZLcqjHenJVHZjJhxylrFFuzejM,723
         | 
| 24 | 
            +
            mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=n8wCvl0rtCEIYhyVyNzRD-g4qqYCSVa30cOyPLjA0UY,723
         | 
| 25 | 
            +
            mocap_desktop_gui/mc/mc_take.py,sha256=Rk1YzHGPvP0M0fL8rlSJ4FvIGUtzI_EfQ3k3c1JGtYs,723
         | 
| 26 | 
            +
            mocap_desktop_gui/mc/mc_take_cloud_job.py,sha256=0NroMw9xzfV1agKjfTTJqpUEtKYgzoq7d7OWXMT8KE4,723
         | 
| 27 | 
            +
            mocap_desktop_gui/mc/mc_take_cloud_job_action.py,sha256=yGQ_GMzr_3oPdbmITARwNj99SUlZmfPrw_adDqGUBnI,723
         | 
| 28 | 
            +
            mocap_desktop_gui/mc/mc_take_cloud_job_calib.py,sha256=2i2I9DxioBAuo6zerZqvXsC72pWRcLj3oXGjXIFS62Y,723
         | 
| 29 | 
            +
            mocap_desktop_gui/mc/mc_take_list_model.py,sha256=9eHe4XuB5QdTTEbdYW5M2Zg5aSUVAZPRl8-ukSScgEY,723
         | 
| 30 | 
            +
            mocap_desktop_gui/mc/mc_take_local_job.py,sha256=8B2dvHVI6_Tqo7dhPfLrMTdDWo7fObQmQ1z_19CtCxA,722
         | 
| 31 | 
            +
            mocap_desktop_gui/mc/mc_take_run_common.py,sha256=M82KDbmDoulpoqww-1E8WfUaqlUFLk3KDuhSxk09Njo,723
         | 
| 32 | 
            +
            mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=Mjo94mkrIZTNmskJO00V-_sqxVvzPk2-cZ5lXhi0TqY,722
         | 
| 33 | 
            +
            mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=Sg213a_bG5ZIPfvqRQY1x62ewZXD0bIH1TmVH52l-vY,723
         | 
| 34 | 
            +
            mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py,sha256=VbbTKFoDwh3Exus1v3drRQKhRpjo9YVBaKIv_11fVC0,723
         | 
| 35 | 
            +
            mocap_desktop_gui/mc/mc_take_runs_local_manager.py,sha256=hqWvPAAZAYFM531T_1u3mNlpmG0Ge4l31a4cqkO74T4,723
         | 
| 36 | 
            +
            mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=chF7y-Xkt3qAqEw2zomydJKgeWhl3qL0vEvMRuEMIdw,723
         | 
| 37 | 
            +
            mocap_desktop_gui/mc/mc_take_settings.py,sha256=KbRjgnTQmPoBCSV359Bg5HIlVhgZdzuYnTJXOS5UR5c,723
         | 
| 38 | 
            +
            mocap_desktop_gui/mc/mc_take_video_model.py,sha256=nIpMsVD-0mRRgKs5eihmcHug-BIAUgCAygdc1e3WtUw,722
         | 
| 39 | 
            +
            mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=F_YkTsDSu0D0KOnAYiVHul_RtiSQuzUUkiXRiAlo-qM,723
         | 
| 40 | 
            +
            mocap_desktop_gui/mc/mc_worker.py,sha256=KDWa1pBg1_0sTmoud7xt7JqTWYKI_TX434JcnuT9zXs,723
         | 
| 41 | 
            +
            mocap_desktop_gui/mc/qml_engine.py,sha256=LCorDbRRMd8IyaS7vMY7bva0UPI3f9Up7sRuqtbsz9w,722
         | 
| 42 | 
            +
            mocap_desktop_gui/mc/rig/Move_Mo.blend,sha256=rNN1yapGy_ok0rd5BFO7ldkTcNeeROnIrmKa2COA_Ic,29633272
         | 
| 43 | 
            +
            mocap_desktop_gui/mc/rig/mapping_body.csv,sha256=CaJ9SLWvXNFU44ft-VI9Br4US2hmdLoMh8w8KnXvHHg,551
         | 
| 44 | 
            +
            mocap_desktop_gui/mc/rig/mapping_fingers.csv,sha256=cy1EX5aJTRjE3dQLe9YsdrGUsxGqPjYupb99fMw_k18,1030
         | 
| 45 | 
            +
            mocap_desktop_gui/mc/rig/sdc_rig.zip,sha256=hYCBzYFZKuSr15Xs0nql-iD6aLpuTzy-_5o2CyZjiJE,9022411
         | 
| 46 | 
            +
            mocap_desktop_gui/mc/scene/scene_3d.blend.5a95cd45,sha256=YBmgAeDqATPeJfra3WrblJ3qpn8QfPtbh4W5Elvn0bM,31290788
         | 
| 47 | 
            +
            mocap_desktop_gui/mc/settings/camera_models.yaml,sha256=cokr4yWMbTTw2X0ObvBIM_j9HWqgBa4QHqSDlF_XpSo,3320
         | 
| 48 | 
            +
            mocap_desktop_gui/mc/settings/settings_action.yaml,sha256=sfTbuupKfB3U4fYOEktKyBNRCw3jdZ26QLHnItNaDFs,18132
         | 
| 49 | 
            +
            mocap_desktop_gui/mc/settings/settings_extrinsic.yaml,sha256=BUnBgmHlD-JWLKtvciwY7ekhznsANRYvPPH_Hs_GI2s,6482
         | 
| 50 | 
            +
            mocap_desktop_gui/mc/util.py,sha256=MXA8RnpSjCGly49z5OhUK8rRJLWVCATVMQJr6dTNuOM,723
         | 
| 51 | 
            +
            mocap_desktop_gui/operations/__init__.py,sha256=SSD5aFh4gJ__0TUXeBlLBkRIG0VAfWESEKbpgj_bXaA,723
         | 
| 52 | 
            +
            mocap_desktop_gui/sample.py,sha256=6qfc5uA2zFuCsNcbjp0_ahuL__iFU_vwKmhFN64GD_0,721
         | 
| 53 | 
            +
            mocap_desktop_gui/settings.ini,sha256=kBwDIpL74uLZhID3_yaECygFKftAyevRrN7PRcjpVvc,131
         | 
| 54 | 
            +
            mocap_desktop_gui/utils/__init__.py,sha256=NObUVvmw7RrglBOiv_tENSJwAoW-a_N66vlB_0qvwb0,723
         | 
| 55 | 
            +
            mocap_desktop_gui-0.8.0.dist-info/METADATA,sha256=c9n4BobJLK6IaA7YWwFLQtYhemIRby8rYE1gZOChrcQ,1023
         | 
| 56 | 
            +
            mocap_desktop_gui-0.8.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
         | 
| 57 | 
            +
            mocap_desktop_gui-0.8.0.dist-info/entry_points.txt,sha256=xMiDqkrscETVFaPjOzROvqLLQqlaurQKY-U4nPckFog,64
         | 
| 58 | 
            +
            mocap_desktop_gui-0.8.0.dist-info/RECORD,,
         |