Remove blindrepeater.yapsy-plugin from build

This commit is contained in:
David Amrhein 2016-08-17 12:13:47 -04:00
parent c524de9198
commit 726d85ebd0

View file

@ -13,6 +13,7 @@ import requests.certs
from lbrynet import __version__ from lbrynet import __version__
win_icon = os.path.join('packaging', 'windows', 'icons', 'lbry256.ico')
wordlist_path = pkg_resources.resource_filename('lbryum', 'wordlist') wordlist_path = pkg_resources.resource_filename('lbryum', 'wordlist')
base_dir = os.path.abspath(os.path.dirname(__file__)) base_dir = os.path.abspath(os.path.dirname(__file__))
@ -52,7 +53,7 @@ shortcut_table = [
None, # Arguments None, # Arguments
None, # Description None, # Description
None, # Hotkey None, # Hotkey
os.path.join('lbry-dark-icon.ico'), # Icon win_icon, # Icon
None, # IconIndex None, # IconIndex
None, # ShowCmd None, # ShowCmd
'TARGETDIR', # WkDir 'TARGETDIR', # WkDir
@ -123,7 +124,7 @@ build_exe_options = {
exe = Executable( exe = Executable(
script=os.path.join('lbrynet', 'lbrynet_daemon', 'LBRYDaemonControl.py'), script=os.path.join('lbrynet', 'lbrynet_daemon', 'LBRYDaemonControl.py'),
# base='Win32GUI', # base='Win32GUI',
icon=os.path.join('packaging', 'windows', 'icons', 'lbry256.ico'), icon=win_icon,
compress=True, compress=True,
shortcutName='lbrynet', shortcutName='lbrynet',
shortcutDir='DesktopFolder', shortcutDir='DesktopFolder',
@ -138,14 +139,7 @@ setup(
url='lbry.io', url='lbry.io',
author='', author='',
keywords='LBRY', keywords='LBRY',
data_files=[ data_files=[],
('lbrynet/lbrynet_console/plugins',
[
os.path.join(base_dir, 'lbrynet', 'lbrynet_console', 'plugins',
'blindrepeater.yapsy-plugin')
]
),
],
options={'build_exe': build_exe_options, options={'build_exe': build_exe_options,
'bdist_msi': bdist_msi_options}, 'bdist_msi': bdist_msi_options},
executables=[exe], executables=[exe],