forked from dawsonjon/Chips-2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompile.py
More file actions
29 lines (25 loc) · 771 Bytes
/
compile.py
File metadata and controls
29 lines (25 loc) · 771 Bytes
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
#!/usr/bin/env python
""" Description..."""
__author__ = "Peter Bennett"
__copyright__ = "Copyright 2012, Peter A Bennett"
__license__ = "LGPL"
__version__ = "0.1"
__maintainer__ = "Peter Bennett"
__email__ = "pab850@googlemail.com"
__contact__ = "www.bytebash.com"
from distutils.core import setup
import py2exe
setup(
windows = ['qt_schematix.py'],
options = {
"py2exe" : {
"includes" : ['sys', 'tempfile', 'zipfile', 'mmap', 'encodings',
'json', 'hashlib', 'datetime', 'struct',
'os', 'time', 'random', 'math', 'xmlrpclib'],
"compressed" : 1,
"optimize" : 2,
"ascii" : 1,
"bundle_files": 1
}
}
)