ATTENTION DO NOT USE THESE: new binaries in the Downloads section

placed fake binaries that update themselves where old versions updating will search for the new version
This commit is contained in:
Filippo Valsorda 2012-12-08 01:28:44 +01:00
parent 5a304a7637
commit c7287a3caf
6 changed files with 142 additions and 0 deletions

View file

@ -0,0 +1,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)