File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ # -*- mode: python ; coding: utf-8 -*-
2
+
3
+
4
+ a = Analysis (
5
+ ['keyboard.py' ],
6
+ pathex = [],
7
+ binaries = [],
8
+ datas = [('data/style.css' , './data' )],
9
+ hiddenimports = [],
10
+ hookspath = [],
11
+ hooksconfig = {
12
+ 'gi' : {
13
+ 'module-versions' : {
14
+ 'Gtk' : '4.0'
15
+ }
16
+ }
17
+ },
18
+ runtime_hooks = [],
19
+ excludes = ['pytest' ],
20
+ noarchive = False ,
21
+ optimize = 0 ,
22
+ )
23
+ pyz = PYZ (a .pure )
24
+
25
+ exe = EXE (
26
+ pyz ,
27
+ a .scripts ,
28
+ a .binaries ,
29
+ a .datas ,
30
+ [],
31
+ name = 'keyboard' ,
32
+ debug = False ,
33
+ bootloader_ignore_signals = False ,
34
+ strip = False ,
35
+ upx = True ,
36
+ upx_exclude = [],
37
+ runtime_tmpdir = None ,
38
+ console = False ,
39
+ disable_windowed_traceback = False ,
40
+ argv_emulation = False ,
41
+ target_arch = None ,
42
+ codesign_identity = None ,
43
+ entitlements_file = None ,
44
+ )
You can’t perform that action at this time.
0 commit comments