-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathezShareCPAP.spec
More file actions
executable file
·71 lines (65 loc) · 1.92 KB
/
ezShareCPAP.spec
File metadata and controls
executable file
·71 lines (65 loc) · 1.92 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(
['main.py'],
pathex=['.'],
binaries=[],
datas=[
('icon.icns', '.'),
('ezsharecpap.ui', '.'),
('file.png', '.'),
('folder.png', '.'),
('icon.png', '.'),
('sdcard.png', '.')
],
hiddenimports=['ttkwidgets'],
hookspath=[],
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=2
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name='ezShareCPAP',
debug=False,
bootloader_ignore_signals=False,
strip=True,
upx=True,
console=False,
icon='icon.icns'
)
coll = COLLECT(
exe,
a.binaries,
a.datas,
strip=True,
upx=True,
name='ezShareCPAP'
)
app = BUNDLE(
coll,
name='ezShareCPAP.app',
icon='icon.icns',
bundle_identifier='com.ezsharecpap',
info_plist={
'CFBundleName': 'ezShareCPAP',
'CFBundleDisplayName': 'ezShareCPAP',
'CFBundleGetInfoString': 'ezShareCPAP',
'CFBundleIdentifier': 'com.ezsharecpap',
'CFBundleVersion': '1.0.1',
'CFBundleShortVersionString': '1.0.1',
'NSAppTransportSecurity': {
'NSAllowsArbitraryLoads': True,
},
'NSDocumentsFolderUsageDescription': 'This application requires access to the Documents folder.',
'NSLocalNetworkUsageDescription': 'This application requires access to the local network to find and communicate with the ez Share WiFi.',
'NSLocationWhenInUseUsageDescription': 'This application requires access to location information to manage the WiFi network switching.',
'NSAppleEventsUsageDescription': 'This application requires access to AppleEvents to automate OSCAR import.',
'NSAccessibilityUsageDescription': 'This application requires access to Accessibility to automate OSCAR import.',
}
)