Skip to content

Commit d65721f

Browse files
committed
Added MSI UUID to enable update functionality
1 parent 434bc00 commit d65721f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55
# fine tuning.
66
copyfiles = [
77
('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'
910
]
1011
buildOptions = dict(packages=[], excludes=[], include_files=copyfiles)
1112

1213
# GUI applications require a different base on Windows (the default is for a
1314
# console application).
14-
base = None
15+
base = "Console"
1516
if sys.platform == "win32":
1617
base = "Win32GUI"
1718

@@ -29,9 +30,13 @@
2930
'build_exe': {
3031
'include_files': [],
3132
'path': sys.path + ['modules']
33+
},
34+
"bdist_msi": {
35+
'upgrade-code': '{22456291-8eb9-4383-86db-e34658f10242}'
3236
}
3337
}
3438

39+
3540
setup(name='TardisDiff',
3641
version='1.0.0',
3742
description='TardisDiff is a tool to output the time you worked today.',

0 commit comments

Comments
 (0)