In the spec file created by Pyinstaller when compiling i have added
excludes=["mfc90u.dll", "mfc90.dll"],
but after compiling these two files can be found in the compiled directory. BUT when I add the line
excludes=["FixTk", "tcl", "tk", "tkinter", "Tkinter"],
it works perfectly. The mfc90u.dll and mfc90.dll causes an error when converting the files to the Windows AppX format and I would like to exclude them. How can i prevent the files and folders i want from being added TO THE compilation?