1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-17 17:42:20 +03:00

setup.py: Fix win32 OPTIONS formatting

This commit is contained in:
Athanasius 2021-03-22 15:07:33 +00:00
parent 732cfa1192
commit 8a3176c67d

View File

@ -165,8 +165,9 @@ if sys.platform == 'darwin':
DATA_FILES = []
elif sys.platform == 'win32':
OPTIONS = { 'py2exe':
{'dist_dir': dist_dir,
OPTIONS = {
'py2exe': {
'dist_dir': dist_dir,
'optimize': 2,
'packages': [
'sqlite3', # Included for plugins
@ -184,7 +185,8 @@ elif sys.platform=='win32':
'PIL',
'pkg_resources',
'simplejson',
'unittest' ],
'unittest'
],
}
}