-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcompile-lin.spec
32 lines (29 loc) · 962 Bytes
/
compile-lin.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- mode: python -*-
block_cipher = None
a = Analysis(['kotnetcli.py'],
pathex=['/home/gijs/Scripts/kotnetcli/build'],
hiddenimports = ['keyring.backends.file',
'keyring.backends.Gnome',
'keyring.backends.Google',
'keyring.backends.keyczar',
'keyring.backends.kwallet',
'keyring.backends.multi',
'keyring.backends.OS_X',
'keyring.backends.pyfs',
'keyring.backends.SecretService',
'keyring.backends.Windows'],
hookspath=None,
runtime_hooks=None,
cipher=block_cipher)
pyz = PYZ(a.pure,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name='kotnetcli-lin',
debug=False,
strip=None,
upx=True,
console=True )