We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85036d6 commit 32b8800Copy full SHA for 32b8800
autossh.spec
@@ -0,0 +1,37 @@
1
+
2
+# -*- mode: python -*-
3
4
+block_cipher = None
5
6
7
+a = Analysis(
8
+ ['autossh.py'],
9
+ pathex=['/usr/local/etc/tmux'],
10
+ binaries=[],
11
+ datas=[],
12
+ hiddenimports=[],
13
+ hookspath=[],
14
+ runtime_hooks=[],
15
+ excludes=[],
16
+ win_no_prefer_redirects=False,
17
+ win_private_assemblies=False,
18
+ cipher=block_cipher,
19
+)
20
+pyz = PYZ(
21
+ a.pure,
22
+ a.zipped_data,
23
+ cipher=block_cipher
24
25
+exe = EXE(
26
+ pyz,
27
+ a.scripts,
28
+ a.binaries,
29
+ a.zipfiles,
30
+ a.datas,
31
+ name='autosshpy',
32
+ debug=False,
33
+ strip=False,
34
+ upx=True,
35
+ runtime_tmpdir=None,
36
+ console=True
37
0 commit comments