We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4aaa71 commit 60161edCopy full SHA for 60161ed
1 file changed
mybible-cli.spec
@@ -0,0 +1,44 @@
1
+# -*- mode: python ; coding: utf-8 -*-
2
+
3
4
+a = Analysis(
5
+ ['mybible-cli.py'],
6
+ pathex=[],
7
+ binaries=[],
8
+ datas=[],
9
+ hiddenimports=[],
10
+ hookspath=[],
11
+ hooksconfig={},
12
+ runtime_hooks=[],
13
+ excludes=[],
14
+ noarchive=False,
15
+ optimize=0,
16
+)
17
+pyz = PYZ(a.pure)
18
19
+exe = EXE(
20
+ pyz,
21
+ a.scripts,
22
+ [],
23
+ exclude_binaries=True,
24
+ name='mybible-cli',
25
+ debug=False,
26
+ bootloader_ignore_signals=False,
27
+ strip=False,
28
+ upx=True,
29
+ console=True,
30
+ disable_windowed_traceback=False,
31
+ argv_emulation=False,
32
+ target_arch=None,
33
+ codesign_identity=None,
34
+ entitlements_file=None,
35
36
+coll = COLLECT(
37
+ exe,
38
+ a.binaries,
39
+ a.datas,
40
41
42
+ upx_exclude=[],
43
44
0 commit comments