1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-10-06 09:27:08 +02:00
yt-dlp/build_exe.py

33 lines
538 B
Python
Raw Normal View History

2012-03-25 23:48:53 +02:00
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")