cx freeze - Change folder structure in Python cx_Freeze project -
i made python application, , wanted construct exe file simplify sharing among windows users. used:
- python 3.6.1
- cx_freeze module 5.0.2
i got exe file, final structure made me cry:
- executable file
- zip archive python 3.6
- 3 dlls (python, sqlite, vcruntime)
- 21 folders
- 10 pyd files
in opinion, not convinient users , move folders , pyd files separate folder or archive (it better). know it? current build.py:
from cx_freeze import setup, executable setup( name = 'myapp', version = '0.1', executables = [executable( script='__main__.py', targetname='myapp.exe', icon='myapp.ico' )] ) what options should add setup function? possible in current versions of python , cx_freeze? or should patch cx_freeze this?
Comments
Post a Comment