forked from goatpig/BitcoinArmory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (16 loc) · 689 Bytes
/
setup.py
File metadata and controls
21 lines (16 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /usr/bin/python
from distutils.core import setup
import py2exe
opts = {"py2exe":{
"dll_excludes":["MSWSOCK.dll", "IPHLPAPI.dll", "MSWSOCK.dll", "WINNSI.dll", "WTSAPI32.dll", "NSI.dll", "POWRPROF.dll", "PSAPI.dll", "CRYPT32.dll"],
"packages":["email"]
}}
setup( options = opts, windows = [
{
"script": "../../ArmoryQt.py",
"icon_resources": [(1, "../../img/armory256x256.ico"),
(1, "../../img/armory64x64.ico"),
(1, "../../img/armory48x48.ico")]
}
]
)