Rapsys Git
/
youtubedl
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
debian/control: Annotate with bug numbers closed by this release.
[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
)