We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99da031 commit 06c5916Copy full SHA for 06c5916
holdup.spec
@@ -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