mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			604 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			604 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| a = Analysis(['portablizer.pyqt4.py'],
 | |
|              hiddenimports=[],
 | |
|              hookspath=None,
 | |
|              runtime_hooks=None)
 | |
| pyz = PYZ(a.pure)
 | |
| exe = EXE(pyz,
 | |
|           a.scripts,
 | |
|           exclude_binaries=True,
 | |
|           name='Portablizer',
 | |
|           debug=False,
 | |
|           strip=None,
 | |
|           upx=True,
 | |
|           console=False)
 | |
| node = Tree('node', prefix='node')
 | |
| collect = COLLECT(exe,
 | |
|                   a.binaries,
 | |
|                   a.zipfiles,
 | |
|                   a.datas,
 | |
|                   node,
 | |
|                   strip=None,
 | |
|                   upx=True,
 | |
|                   name='Portablizer')
 |