from cx_Freeze import setup, Executable setup( name="FakeInstaller", version="1.0", description="Simulated installer", executables=[Executable("fake_installer.py", base=None, target_name="Setup_FakeInstaller.exe")], )