File tree Expand file tree Collapse file tree 2 files changed +54
-0
lines changed Expand file tree Collapse file tree 2 files changed +54
-0
lines changed Original file line number Diff line number Diff line change 1+ # Pyinstaller one folder executable
2+
3+ ```
4+ # from root of the project
5+ pyinstaller -name vuegen src/vuegen/__main__.py
6+ ```
Original file line number Diff line number Diff line change 1+ # -*- mode: python ; coding: utf-8 -*-
2+ from PyInstaller .utils .hooks import collect_all
3+
4+ datas = []
5+ binaries = []
6+ hiddenimports = []
7+
8+ a = Analysis (
9+ ['src/vuegen/__main__.py' ],
10+ pathex = [],
11+ binaries = binaries ,
12+ datas = datas ,
13+ hiddenimports = hiddenimports ,
14+ hookspath = [],
15+ hooksconfig = {},
16+ runtime_hooks = [],
17+ excludes = [],
18+ noarchive = False ,
19+ optimize = 0 ,
20+ )
21+ pyz = PYZ (a .pure )
22+
23+ exe = EXE (
24+ pyz ,
25+ a .scripts ,
26+ [],
27+ exclude_binaries = True ,
28+ name = 'vuegen' ,
29+ debug = False ,
30+ bootloader_ignore_signals = False ,
31+ strip = False ,
32+ upx = True ,
33+ console = True ,
34+ disable_windowed_traceback = False ,
35+ argv_emulation = False ,
36+ target_arch = None ,
37+ codesign_identity = None ,
38+ entitlements_file = None ,
39+ )
40+ coll = COLLECT (
41+ exe ,
42+ a .binaries ,
43+ a .datas ,
44+ strip = False ,
45+ upx = True ,
46+ upx_exclude = [],
47+ name = 'vuegen' ,
48+ )
You can’t perform that action at this time.
0 commit comments