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

Is there a better way to structure post methods in Class Based Views -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -

What is happening when Matlab is starting a "parallel pool"? -