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 -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -