Skip to content

Commit 06c5916

Browse files
committed
Add pyinstaller spec.
1 parent 99da031 commit 06c5916

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

holdup.spec

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
4+
a = Analysis(
5+
['src/holdup/__main__.py'],
6+
pathex=[],
7+
binaries=[],
8+
datas=[],
9+
hiddenimports=['psycopg', 'psycopg_binary'],
10+
hookspath=[],
11+
hooksconfig={},
12+
runtime_hooks=[],
13+
excludes=[],
14+
noarchive=False,
15+
)
16+
pyz = PYZ(a.pure)
17+
18+
exe = EXE(
19+
pyz,
20+
a.scripts,
21+
a.binaries,
22+
a.datas,
23+
[],
24+
name='holdup',
25+
debug=False,
26+
bootloader_ignore_signals=False,
27+
strip=False,
28+
upx=True,
29+
upx_exclude=[],
30+
runtime_tmpdir=None,
31+
console=True,
32+
disable_windowed_traceback=False,
33+
argv_emulation=False,
34+
target_arch=None,
35+
codesign_identity=None,
36+
entitlements_file=None,
37+
)

0 commit comments

Comments
 (0)