| Index: runserver.spec |
| =================================================================== |
| --- a/runserver.spec |
| +++ b/runserver.spec |
| @@ -1,15 +1,26 @@ |
| # PyInstaller spec, run "pyinstaller runserver.spec" from repository root to build |
| a = Analysis( |
| ['runserver.py'], |
| pathex=['.'], |
| hiddenimports=[], |
| - excludes=['sqlite3', 'django', 'ssl', '_ssl', 'OpenSSL', '_hashlib', 'unittest'], |
| + excludes=[ |
| + 'distutils', |
| + 'doctest', |
| + 'ssl', |
| + '_ssl', |
| + 'werkzeug', |
|
Sebastian Noack
2015/03/21 11:26:48
Are you sure we should exclude werkzeug from the b
Wladimir Palant
2015/03/21 11:36:34
It pulls in lots of dependencies, and the debugger
Sebastian Noack
2015/03/21 12:51:45
Fair enough.
|
| + |
| + # Mac-specific |
| + 'Carbon', |
| + 'Finder', |
| + 'StdSuites', |
| + ], |
| ) |
| pyz = PYZ(a.pure) |
| exe = EXE( |
| pyz, |
| a.scripts, |
| a.binaries, |