File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 5
5
# fine tuning.
6
6
copyfiles = [
7
7
('C:\Python34\Lib\site-packages\PyQt5\libEGL.dll' , 'libEGL.dll' ),
8
- 'tardis.ico' # Google for a fancy tardis icon until I've made one
8
+ 'tardis.ico' , # Google for a fancy tardis icon until I've made one
9
+ 'LICENSE'
9
10
]
10
11
buildOptions = dict (packages = [], excludes = [], include_files = copyfiles )
11
12
12
13
# GUI applications require a different base on Windows (the default is for a
13
14
# console application).
14
- base = None
15
+ base = "Console"
15
16
if sys .platform == "win32" :
16
17
base = "Win32GUI"
17
18
29
30
'build_exe' : {
30
31
'include_files' : [],
31
32
'path' : sys .path + ['modules' ]
33
+ },
34
+ "bdist_msi" : {
35
+ 'upgrade-code' : '{22456291-8eb9-4383-86db-e34658f10242}'
32
36
}
33
37
}
34
38
39
+
35
40
setup (name = 'TardisDiff' ,
36
41
version = '1.0.0' ,
37
42
description = 'TardisDiff is a tool to output the time you worked today.' ,
You can’t perform that action at this time.
0 commit comments