You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)]
)`
The text was updated successfully, but these errors were encountered: