mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-03 22:07:07 -05:00 
			
		
		
		
	Added py2exe script
This commit is contained in:
		
							
								
								
									
										32
									
								
								build_exe.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								build_exe.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,32 @@
 | 
			
		||||
from distutils.core import setup
 | 
			
		||||
import py2exe
 | 
			
		||||
import sys
 | 
			
		||||
 | 
			
		||||
# If run without args, build executables
 | 
			
		||||
if len(sys.argv) == 1:
 | 
			
		||||
    sys.argv.append("py2exe")
 | 
			
		||||
 | 
			
		||||
sys.path.append('./youtube_dl')
 | 
			
		||||
 | 
			
		||||
options = {
 | 
			
		||||
    "bundle_files": 1,
 | 
			
		||||
    "compressed": 1,
 | 
			
		||||
    "optimize": 2,
 | 
			
		||||
    "dist_dir": '.',
 | 
			
		||||
    "dll_excludes": ['w9xpopen.exe']
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
console = [{
 | 
			
		||||
    "script":"./youtube_dl/__main__.py",
 | 
			
		||||
    "dest_base": "youtube-dl",
 | 
			
		||||
}]
 | 
			
		||||
 | 
			
		||||
setup(
 | 
			
		||||
    console = console,
 | 
			
		||||
    options = {"py2exe": options},
 | 
			
		||||
    zipfile = None,
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
import shutil
 | 
			
		||||
shutil.rmtree("build")
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user