Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: sitescripts/cms/runserver.spec

Issue 5395911630913536: Added PyInstaller spec to create stand-alone CMS builds (Closed)
Patch Set: Created Dec. 16, 2013, 1:03 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sitescripts/cms/bin/runserver.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # PyInstaller spec, run "pyinstaller sitescripts/cms/runserver.spec" from sitesc ripts root to build
2
3 a = Analysis(
4 ['sitescripts/cms/bin/runserver.py'],
5 pathex=['.'],
6 hiddenimports=[],
7 excludes=['sqlite3', 'django', 'ssl', '_ssl', 'OpenSSL', '_hashlib', 'unittest '],
8 )
9
10 pyz = PYZ(a.pure)
11
12 exe = EXE(
13 pyz,
14 a.scripts,
15 a.binaries,
16 a.zipfiles,
17 a.datas,
18 name='runserver',
19 debug=False,
20 strip=None,
21 upx=False,
22 console=True
23 )
OLDNEW
« no previous file with comments | « sitescripts/cms/bin/runserver.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld