python - Cx_freeze excluding unwanted libs -
i trying exluce few libs not need in build when added list still shown in build log.
this code build.
from cx_freeze import setup, executable build_exe_options = {"excludes": ["tkinter", "pil"], "include_files": ['bin'], "optimize": 2} setup( author="secret", name="app", options={"build_exe": build_exe_options}, version="1.0", description="something", executables=[executable("app.py", base="console")])
what missing?
Comments
Post a Comment