cx_Freeze creates standalone executables from Python scripts, with the same performance, is cross-platform and should work on any platform that Python itself works on.
Today i compiled a simple script: code is : ( print("That's awsome") ) with last version of cx-freeze 6.15.6 ! but the generated exe flagged as virus by chrome browser (but all antiviruses said its clean)
This is the setup code :
`import sys
from cx_Freeze import setup, Executable
Today i compiled a simple script: code is : ( print("That's awsome") ) with last version of cx-freeze 6.15.6 ! but the generated exe flagged as virus by chrome browser (but all antiviruses said its clean)
This is the setup code : `import sys from cx_Freeze import setup, Executable
build_exe_options = { "include_files": ["C:/Users/dragonborn/Desktop/project1/project1/tkinter/manifest.xml"] }
base = None
setup( name="main", version="1.1.2.0", description="main", options={"build_exe": build_exe_options}, executables=[Executable("main.py", base=base)] )`