forked from Kiv/poclbm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 737 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
import py2exe
setup(windows=[
{'script': 'guiminer.py',
'icon_resources': [(0, "logo.ico")]
}
],
console=['poclbm.py', 'po_to_mo.py'],
# OpenCL.dll is vendor specific
options=dict(py2exe=dict(
dll_excludes=['OpenCL.dll', 'w9xpopen.exe'],
compressed=True,
optimize=2,
excludes = ["Tkconstants", "Tkinter", "tcl", "curses", "_ssl", "pyexpat", "unicodedata", "bz2"],
)),
data_files = ['msvcp90.dll',
'phatk.cl',
'logo.ico',
'LICENSE.txt',
'servers.ini',
'README.txt',
'defaults.ini'])