-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (41 loc) · 1.73 KB
/
setup.py
File metadata and controls
52 lines (41 loc) · 1.73 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from distutils.core import setup
import sys
sys.argv = ["blah", "py2exe"]
includes = []
excludes = ['_gtkagg', '_tkagg', 'bsddb', 'curses', 'email', 'pywin.debugger',
'pywin.debugger.dbgcon', 'pywin.dialogs', 'tcl',
'Tkconstants', 'Tkinter']
# excludes = []
packages = []
# dll_excludes = ['libgdk-win32-2.0-0.dll', 'libgobject-2.0-0.dll', 'tcl84.dll','tk84.dll']
# dll_excludes = ['MSVCR80.dll','MSVCP80.dll','MSVCR90.dll','MSVCP90.dll','vcomp.dll']
dll_excludes = ['MSVCP90.dll']
# dll_excludes=list()
setup(data_files=[('', ['calicon.png',
'logoOpenVidTens.png',
'Startdownsmall.png',
'Startupsmall.png',
'Stopupsmall.png',
'Stopdownsmall.png',
'C:\Python27\Lib\helvetica-10.pil',
'C:\Python27\Lib\helvB08.pil',
'C:\Python27\Lib\helvetica-10.png',
'C:\Python27\Lib\helvB08.png',
])],
options={"py2exe": {"compressed": 0, "optimize": 0,
"includes": includes,
"excludes": excludes,
"packages": packages,
"dll_excludes": dll_excludes,
"bundle_files": 3,
"dist_dir": "64bit",
"xref": False,
"skip_archive": False,
"ascii": False,
"custom_boot_script": '',
}
},
zipfile=None,
console=['OpenVidTens2D.py'], requires=['bbfreeze', 'cv2', 'np', 'py2exe']
)
# zipfile=None,