add setup.py for py2exe

This commit is contained in:
Mark Eaton 2021-11-23 18:38:12 -05:00
parent 643e11f2b3
commit fc55e434b9
1 changed files with 8 additions and 0 deletions

8
setup.py Normal file
View File

@ -0,0 +1,8 @@
from distutils.core import setup
import py2exe
setup(
options = {'py2exe': {'bundle_files': 1, 'compressed': True}},
windows = ['convert.py'],
zipfile = None,
)