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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# -*- mode: python -*-
a = Analysis(['pkg/pyinst/bitmask.py'],
pathex=['/home/kali/Virtualenvs/leap-pyinst/lib/python2.7/site-packages/zope', '/home/kali/Virtualenvs/leap-pyinst/lib/python2.7/site-packages/zope/interface', '/home/kali/Virtualenvs/leap-pyinst/lib/python2.7/site-packages/zope/proxy', '/home/kali/leap/bitmask_client/src/leap/bitmask'],
hiddenimports=[
'zope.interface', 'zope.proxy',
'leap.common',
'leap.common.config',
'PySide.QtCore', 'PySide.QtGui',
# not needed with latest develop pyinstaller
'cryptography.hazmat.bindings.openssl',
'cryptography.hazmat.bindings.openssl.aes',
'cryptography.hazmat.bindings.openssl.asn1',
'cryptography.hazmat.bindings.openssl.bignum',
'cryptography.hazmat.bindings.openssl.bio',
'cryptography.hazmat.bindings.openssl.cmac',
'cryptography.hazmat.bindings.openssl.cms',
'cryptography.hazmat.bindings.openssl.conf',
'cryptography.hazmat.bindings.openssl.crypto',
'cryptography.hazmat.bindings.openssl.dh',
'cryptography.hazmat.bindings.openssl.dsa',
'cryptography.hazmat.bindings.openssl.ec',
'cryptography.hazmat.bindings.openssl.ecdh',
'cryptography.hazmat.bindings.openssl.ecdsa',
'cryptography.hazmat.bindings.openssl.engine',
'cryptography.hazmat.bindings.openssl.err',
'cryptography.hazmat.bindings.openssl.evp',
'cryptography.hazmat.bindings.openssl.hmac',
'cryptography.hazmat.bindings.openssl.nid',
'cryptography.hazmat.bindings.openssl.objects',
'cryptography.hazmat.bindings.openssl.opensslv',
'cryptography.hazmat.bindings.openssl.osrandom_engine',
'cryptography.hazmat.bindings.openssl.pem',
'cryptography.hazmat.bindings.openssl.pkcs12',
'cryptography.hazmat.bindings.openssl.pkcs7',
'cryptography.hazmat.bindings.openssl.rand',
'cryptography.hazmat.bindings.openssl.rsa',
'cryptography.hazmat.bindings.openssl.ssl',
'cryptography.hazmat.bindings.openssl.x509name',
'cryptography.hazmat.bindings.openssl.x509',
'cryptography.hazmat.bindings.openssl.x509v3',
'cryptography.hazmat.bindings.openssl.x509_vfy'],
hookspath=None,
runtime_hooks=None)
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
exclude_binaries=True,
name='bitmask',
debug=False,
strip=None,
upx=True,
console=True )
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=None,
upx=True,
name='bitmask')
|