1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

appveyor fix #3: try using pyinstaller

Support python 3.7 but not 3.8 yet - py2exe seems abandoned
This commit is contained in:
Shlomi Fish 2020-09-12 13:12:19 +03:00
parent c2b48687f0
commit 481cb00cf3

View file

@ -107,5 +107,8 @@ if os.name == 'nt':
kw['windows'] = [{'script': 'pysol.py',
'icon_resources': [(1, 'data/pysol.ico')], }]
kw['packages'].remove('pysollib.pysolgtk')
# See:
# https://pypi.org/project/pyinstaller-setuptools/
kw['entry_points'] = {'console_sripts': ['entry=module.func', ], }
setup(**kw)