new-books-desktop/setup.py

9 lines
174 B
Python
Raw Permalink Normal View History

2021-11-23 23:38:12 +00:00
from distutils.core import setup
import py2exe
setup(
options = {'py2exe': {'bundle_files': 1, 'compressed': True}},
windows = ['convert.py'],
zipfile = None,
)