-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
37 lines (36 loc) · 904 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from distutils.core import setup
import py2exe
setup(
console=['bootstrap.py'],
options={
"py2exe": {
"optimize": 2,
"compressed": True,
"bundle_files": 2,
"includes": [
"__future__",
"contextlib",
"htmlentitydefs",
"inspect",
"json",
"logging",
"multiprocessing",
"numbers",
"os",
"pkg_resources",
"select",
"socket",
"struct",
"sys",
"time",
"urlparse",
"ConfigParser",
],
"excludes": [
"pyuv",
"tornado",
"tornado-pyuv",
]
}
}
)