repo.or.cz
/
ugit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
pull: make pull verbose
[ugit.git]
/
scripts
/
py2exe-setup.py
blob
dd758d6337e0114efbef41c8a92ca69c85d94983
1
from
distutils
.
core
import
setup
2
import
py2exe
3
4
setup
(
5
windows
= [
6
{
"script"
:
"git-ugit"
},
7
],
8
options
= {
9
"py2exe"
: {
10
"includes"
: [
"PyQt4._qt"
,
"pprint"
,
"sip"
],
11
}
12
}
13
)