Skip to content

Commit

Permalink
Add more info to MSI installer
Browse files Browse the repository at this point in the history
  • Loading branch information
jnettels committed Apr 1, 2021
1 parent 35699a8 commit 9f2c9c7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions setup_exe.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,14 +125,17 @@
),
]

author = 'Joris Zimmermann'
description = 'Parallelized TRNSYS simulation with Python'

# The setup function
setup(
name='trnpy',
version=version,
description='Parallelized TRNSYS simulation with Python',
description=description,
long_description=open('README.md').read(),
license='GPL-3.0',
author='Joris Zimmermann',
author=author,
author_email='[email protected]',
url='https://github.com/jnettels/trnpy',

Expand Down Expand Up @@ -230,6 +233,9 @@
]
},
'bdist_msi': {'data': {"Shortcut": shortcut_table},
'summary_data': {'author': author,
'comments': description},
'install_icon': r'./res/icon.ico',
'upgrade_code':
'{0f4794c7-5129-4414-8fd5-b8fff2816e45}',
},
Expand Down

0 comments on commit 9f2c9c7

Please sign in to comment.