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

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -