[javascriptlint-commit] SF.net SVN: javascriptlint:[377] trunk/setup.py
Status: Beta
Brought to you by:
matthiasmiller
From: <mat...@us...> - 2018-01-02 21:42:45
|
Revision: 377 http://sourceforge.net/p/javascriptlint/code/377 Author: matthiasmiller Date: 2018-01-02 21:42:44 +0000 (Tue, 02 Jan 2018) Log Message: ----------- Remove unnecessary files from the py2exe bundle. Modified Paths: -------------- trunk/setup.py Modified: trunk/setup.py =================================================================== --- trunk/setup.py 2018-01-02 21:36:45 UTC (rev 376) +++ trunk/setup.py 2018-01-02 21:42:44 UTC (rev 377) @@ -47,9 +47,22 @@ console = ['jsl'], options = { 'py2exe': { - 'excludes': ['resource'], + 'excludes': [ + 'resource', + 'bz2', + '_ssl', + '_hashlib', + 'socket', + 'select' + ], 'bundle_files': 1, 'optimize': 1, # requires 1 to preserve docstrings + 'dll_excludes': [ + 'mswsock.dll', + 'powrprof.dll', + 'CRYPT32.dll' + ] + } }, zipfile = None This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |