Limit Nuitka package data to runtime resources

Include only Furious/Data resources in standalone builds so repository
guidance and other non-runtime package files are not copied into
distributions.

Signed-off-by: Loren Eteval <loren.eteval@proton.me>
This commit is contained in:
Loren Eteval
2026-08-24 18:38:48 +08:00
parent 9a92045271
commit feec6e5e91
+3 -3
View File
@@ -90,7 +90,7 @@ if PLATFORM == 'Windows':
f'--standalone --plugin-enable=pyside6 '
f'--disable-console '
f'--assume-yes-for-downloads '
f'--include-package-data=Furious '
f'--include-package-data=Furious:Data/** '
f'--nofollow-import-to=numpy '
f'{NUITKA_BINARY_VERSION_OPTION}'
f'--windows-icon-from-ico=\"Icons/png/rocket-takeoff-window.png\" '
@@ -108,7 +108,7 @@ elif PLATFORM == 'Darwin':
f'--standalone --plugin-enable=pyside6 '
f'--disable-console '
f'--assume-yes-for-downloads '
f'--include-package-data=Furious '
f'--include-package-data=Furious:Data/** '
f'--nofollow-import-to=numpy '
f'{NUITKA_BINARY_VERSION_OPTION}'
f'--macos-create-app-bundle '
@@ -123,7 +123,7 @@ elif PLATFORM == 'Linux':
f'--standalone --plugin-enable=pyside6 '
f'--disable-console '
f'--assume-yes-for-downloads '
f'--include-package-data=Furious '
f'--include-package-data=Furious:Data/** '
f'--nofollow-import-to=numpy '
f'{NUITKA_BINARY_VERSION_OPTION}'
f'Furious '