After the successful packaging of my PySide app using PyInstaller, I've found lots of different *.so files in a package folder. I was surprised seeing libraries I don't use in my project, like: libQt53DAnimation.so
, libQt53DCore.so
, libQt5Multimedia.so
and etc.
I didn't import them in source code and haven't include them in hidden imports.
As i have read, PyInstaller automatically finds all dependencies needed an app to run. If I delete them manually after the packaging, then my app running without any changes/troubles. That's points out that there is no need in them and they should not be treated as dependencies, aren't they?
So is there any way to exclude them while packaging