forked from LBRYCommunity/lbry-sdk
update win32 setup script to include lbryum
This commit is contained in:
parent
fcb317ca40
commit
7d1cf7975a
1 changed files with 4 additions and 3 deletions
|
@ -7,7 +7,7 @@ import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from cx_Freeze import setup, Executable
|
from cx_Freeze import setup, Executable
|
||||||
|
import requests.certs
|
||||||
|
|
||||||
def find_data_file(filename):
|
def find_data_file(filename):
|
||||||
if getattr(sys, 'frozen', False):
|
if getattr(sys, 'frozen', False):
|
||||||
|
@ -48,9 +48,9 @@ bdist_msi_options = {
|
||||||
build_exe_options = {
|
build_exe_options = {
|
||||||
'include_msvcr': True,
|
'include_msvcr': True,
|
||||||
'includes': [],
|
'includes': [],
|
||||||
'packages': ['os', 'twisted', 'miniupnpc', 'unqlite', 'seccure',
|
'packages': ['six', 'os', 'twisted', 'miniupnpc', 'unqlite', 'seccure',
|
||||||
'requests', 'bitcoinrpc', 'txjsonrpc', 'win32api', 'Crypto',
|
'requests', 'bitcoinrpc', 'txjsonrpc', 'win32api', 'Crypto',
|
||||||
'gmpy', 'yapsy'],
|
'gmpy', 'yapsy', 'lbryum', 'google.protobuf'],
|
||||||
'excludes': ['zope.interface._zope_interface_coptimizations'],
|
'excludes': ['zope.interface._zope_interface_coptimizations'],
|
||||||
'include_files': [os.path.join('lbrynet', 'lbrynet_gui', 'close.gif'),
|
'include_files': [os.path.join('lbrynet', 'lbrynet_gui', 'close.gif'),
|
||||||
os.path.join('lbrynet', 'lbrynet_gui', 'close1.png'),
|
os.path.join('lbrynet', 'lbrynet_gui', 'close1.png'),
|
||||||
|
@ -63,6 +63,7 @@ build_exe_options = {
|
||||||
os.path.join('lbrynet', 'lbrynet_gui', 'show_options.gif'),
|
os.path.join('lbrynet', 'lbrynet_gui', 'show_options.gif'),
|
||||||
os.path.join('lbrycrdd.exe'), # Not included in repo
|
os.path.join('lbrycrdd.exe'), # Not included in repo
|
||||||
os.path.join('lbrycrd-cli.exe'), # Not included in repo
|
os.path.join('lbrycrd-cli.exe'), # Not included in repo
|
||||||
|
(requests.certs.where(), 'cacert.pem'),
|
||||||
],
|
],
|
||||||
'namespace_packages': ['zope']}
|
'namespace_packages': ['zope']}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue