]> Raphaƫl G. Git Repositories - youtubedl/blob - devscripts/transition_helper_exe/setup.py
Imported Upstream version 2014.11.23
[youtubedl] / devscripts / transition_helper_exe / setup.py
1 from distutils.core import setup
2 import py2exe
3
4 py2exe_options = {
5 "bundle_files": 1,
6 "compressed": 1,
7 "optimize": 2,
8 "dist_dir": '.',
9 "dll_excludes": ['w9xpopen.exe']
10 }
11
12 setup(console=['youtube-dl.py'], options={ "py2exe": py2exe_options }, zipfile=None)