1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-12 15:27:14 +03:00

Packaging cleanups

This commit is contained in:
Jonathan Harris 2019-09-30 03:08:07 +01:00 committed by Athanasius
parent 2abc9cb149
commit 413865e4d1
3 changed files with 4 additions and 4 deletions

View File

@ -104,7 +104,7 @@
</RegistryKey>
</Component>
<!-- Generate with `heat.exe dir dist.win32 -gg -sfrag -suid -out foo.wxs` -->
<!-- Generate with `heat.exe dir dist.win32 -ag -sfrag -suid -out foo.wxs` -->
<!-- Sadly too late for auto-generated Component UUIDs -->
<Directory Id="ProgramFilesFolder">

View File

@ -1,2 +1,2 @@
@REM http://www.py2exe.org/index.cgi/OptimizedBytecode
"C:\Program Files (x86)\Python27\python.exe" -OO setup.py py2exe
"C:\Program Files (x86)\Python37-32\python.exe" -OO setup.py py2exe

View File

@ -68,7 +68,7 @@ if sys.platform=='darwin':
'optimize': 2,
'packages': [ 'requests', 'keyring.backends' ],
'frameworks': [ 'Sparkle.framework' ],
'excludes': [ 'distutils', 'iniparse', '_markerlib', 'PIL', 'pkg_resources', 'simplejson', 'unittest' ],
'excludes': [ 'distutils', '_markerlib', 'PIL', 'pkg_resources', 'simplejson', 'unittest' ],
'iconfile': '%s.icns' % APPNAME,
'include_plugins': [('plugins', x) for x in PLUGINS],
'resources': [ 'commodity.csv', 'rare_commodity.csv', 'snd_good.wav', 'snd_bad.wav', 'modules.p', 'ships.p', 'stations.p', 'systems.p'],
@ -113,7 +113,7 @@ elif sys.platform=='win32':
'shutil', # Included for plugins
'zipfile', # Included for plugins
],
'excludes': [ 'distutils', 'iniparse', '_markerlib', 'optparse', 'PIL', 'pkg_resources', 'simplejson', 'unittest' ],
'excludes': [ 'distutils', '_markerlib', 'optparse', 'PIL', 'pkg_resources', 'simplejson', 'unittest' ],
}
}