mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-15 02:54:09 -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:
parent
c2b48687f0
commit
481cb00cf3
1 changed files with 3 additions and 0 deletions
3
setup.py
3
setup.py
|
@ -107,5 +107,8 @@ if os.name == 'nt':
|
||||||
kw['windows'] = [{'script': 'pysol.py',
|
kw['windows'] = [{'script': 'pysol.py',
|
||||||
'icon_resources': [(1, 'data/pysol.ico')], }]
|
'icon_resources': [(1, 'data/pysol.ico')], }]
|
||||||
kw['packages'].remove('pysollib.pysolgtk')
|
kw['packages'].remove('pysollib.pysolgtk')
|
||||||
|
# See:
|
||||||
|
# https://pypi.org/project/pyinstaller-setuptools/
|
||||||
|
kw['entry_points'] = {'console_sripts': ['entry=module.func', ], }
|
||||||
|
|
||||||
setup(**kw)
|
setup(**kw)
|
||||||
|
|
Loading…
Add table
Reference in a new issue