Skip to content

Commit 32b8800

Browse files
committed
Add missing autossh.spec
1 parent 85036d6 commit 32b8800

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

autossh.spec

+37
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)