File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 13
13
# Data files
14
14
datas = collect_data_files ("pyjibe" , include_py_files = True )
15
15
datas += collect_data_files ("pyjibe" , subdir = "img" )
16
+ datas += collect_data_files ("pyjibe" , subdir = "fd" )
17
+ datas += collect_data_files ("pyjibe" , subdir = "head" )
16
18
17
19
hiddenimports = ["mpl_toolkits" ,
18
20
"mpl_toolkits.axes_grid1" ,
Original file line number Diff line number Diff line change 2
2
from os .path import exists
3
3
import warnings
4
4
5
+ from pyjibe ._version import version
6
+
7
+
5
8
if not exists ("./PyJibeLauncher.py" ):
6
9
warnings .warn ("Cannot find 'PyJibeLauncher.py'! Please run pyinstaller " +
7
10
"from the 'build-recipes' directory." )
@@ -46,5 +49,6 @@ app = BUNDLE(coll,
46
49
bundle_identifier = None ,
47
50
info_plist = {
48
51
'NSHighResolutionCapable' : 'True' ,
52
+ 'CFBundleShortVersionString' : version ,
49
53
}
50
54
)
You can’t perform that action at this time.
0 commit comments