File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 33from PyInstaller .utils .hooks import collect_all
44
55paddleocr_datas , paddleocr_binaries , paddleocr_hiddenimports = collect_all ('paddleocr' )
6+ cython_datas , cython_binaries , cython_hiddenimports = collect_all ('Cython' )
67
78a = Analysis (
89 ['MagiaTimeline.py' ],
910 pathex = [],
1011 binaries = [
1112 ('venv/Lib/site-packages/paddle/libs/' , 'paddle/libs/' ),
12- ] + paddleocr_binaries ,
13+ ] + paddleocr_binaries + cython_binaries ,
1314 datas = [
1415 ('README.md' , 'move_to_root' ),
1516 ('README-zh_CN.md' , 'move_to_root' ),
1617 ('ConfigSchema.json' , 'move_to_root' ),
1718 ('config.yml' , 'move_to_root' ),
1819 ('template.asst' , 'move_to_root' ),
1920 ('PaddleOCRModels/' , 'move_to_root/PaddleOCRModels/' ),
20- ] + paddleocr_datas ,
21- hiddenimports = [] + paddleocr_hiddenimports ,
21+ ] + paddleocr_datas + cython_datas ,
22+ hiddenimports = [] + paddleocr_hiddenimports + cython_hiddenimports ,
2223 hookspath = [],
2324 hooksconfig = {},
2425 runtime_hooks = [],
You can’t perform that action at this time.
0 commit comments