forked from Kiv/poclbm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 786 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
from distutils.core import setup
import py2exe
setup(windows=[
{'script': 'guiminer.py',
'icon_resources': [(0, "logo.ico")]
}
],
console=['phoenix.py', 'poclbm.py', 'po_to_mo.py'],
# OpenCL.dll is vendor specific
options=dict(py2exe=dict(
includes="minerutil, twisted.web.resource, QueueReader",
dll_excludes=['OpenCL.dll'],
#bundle_files=1,
compressed=True,
optimize=2,
excludes = ["Tkconstants", "Tkinter", "tcl"],
)),
data_files = ['msvcp90.dll',
'BitcoinMiner.cl',
'logo.ico',
'LICENSE.txt',
'servers.ini',
'README.txt',
'defaults.ini'])