aboutsummaryrefslogtreecommitdiff
path: root/devscripts/transition_helper_exe/setup.py
blob: bb3264af0a0c96effc885943f9ea6f031eac7e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from distutils.core import setup
import py2exe

py2exe_options = {
    "bundle_files": 1,
    "compressed": 1,
    "optimize": 2,
    "dist_dir": '.',
    "dll_excludes": ['w9xpopen.exe']
}

setup(console=['youtube-dl.py'], options={"py2exe": py2exe_options}, zipfile=None)