marcelotduarte / cx_Freeze

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.
https://marcelotduarte.github.io/cx_Freeze/
Other
1.36k stars 220 forks source link

Simple code flagged as virus ! #2021

Open danker001 opened 1 year ago

danker001 commented 1 year ago

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)] )`

kamikaze commented 1 year ago

this problem lasts for many years

marcelotduarte commented 1 year ago

Please check #1059 (and perhaps #203).