Skip to content

Commit

Permalink
Fixed windows icon (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-Gottschlich authored Jan 18, 2019
1 parent 59ceb83 commit 0cb9088
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Binary file added icon.ico
Binary file not shown.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@ def find_data_file(filename):

build_exe_options = {'packages': ['os', 'idna', 'multiprocessing', 'dbm']}
bdist_mac_options = {'iconfile': find_data_file('icon.icns')}
executables = [Executable('SocialAmnesia.py', base=base, icon='icon.png')]
executables = [Executable('SocialAmnesia.py', base=base, icon=find_data_file('icon.ico'))]

setup(name=app_name,
version='1.0.0',
description=app_description,
options={'build_exe': build_exe_options, 'bdist_mac': bdist_mac_options},
executables=executables)

0 comments on commit 0cb9088

Please sign in to comment.