i am creating a executable of python file using the cx_freeze. The problem that i am facing is that when i create the executable including the files(created by me) which are imported in the code of the executable file, it is not able to import the methods from the dependent files. Following is the setup file that i am using:
from cx_Freeze import setup, Executable
includefiles = ['mainapp' , 'subapp1', 'subapp2'] includes = [] excludes = ['Tkinter']
setup( name = 'Myapp', version = '0.1', description = 'MyApp', options = {'build_exe': {'excludes':excludes,'include_files':includefiles}}, executables = [Executable('mainapp\run.py')] )
the build folder as well as the library.zip in it contains the dependent files when i build the setup. Is there some configuration that i am missing or some configuration that i have done wrongly?