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 -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -