Skip to content

Commit

Permalink
Add included files for Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
phihag committed Jun 23, 2013
1 parent b07d9c2 commit e646ffe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# -*- coding: utf-8 -*-

from __future__ import print_function

from glob import glob
import pkg_resources
import sys

Expand All @@ -23,7 +25,9 @@
"compressed": 1,
"optimize": 2,
"dist_dir": '.',
"dll_excludes": ['w9xpopen.exe']
"dll_excludes": ['w9xpopen.exe'],
"includes": [m.replace('\\', '.').replace('/', '.')[:-3]
for m in glob('youtube_dl/*/*.py')]
}
py2exe_console = [{
"script": "./youtube_dl/__main__.py",
Expand Down

0 comments on commit e646ffe

Please sign in to comment.