mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-02 18:25:21 +00:00
fix revealer for linux distributables; and small clean-up
This commit is contained in:
parent
7043d6907f
commit
56a399e1da
4 changed files with 5 additions and 19 deletions
|
@ -28,11 +28,7 @@ hiddenimports += collect_submodules('keepkeylib')
|
|||
hiddenimports += collect_submodules('websocket')
|
||||
|
||||
datas = [
|
||||
(electrum+'lib/currencies.json', PYPKG),
|
||||
(electrum+'lib/servers.json', PYPKG),
|
||||
(electrum+'lib/checkpoints.json', PYPKG),
|
||||
(electrum+'lib/servers_testnet.json', PYPKG),
|
||||
(electrum+'lib/checkpoints_testnet.json', PYPKG),
|
||||
(electrum+'lib/*.json', PYPKG),
|
||||
(electrum+'lib/wordlist/english.txt', PYPKG + '/wordlist'),
|
||||
(electrum+'lib/locale', PYPKG + '/locale'),
|
||||
(electrum+'plugins', PYPKG + '_plugins'),
|
||||
|
|
|
@ -31,11 +31,7 @@ binaries += [b for b in collect_dynamic_libs('PyQt5') if 'qwindowsvista' in b[0]
|
|||
binaries += [('C:/tmp/libsecp256k1.dll', '.')]
|
||||
|
||||
datas = [
|
||||
(home+'lib/currencies.json', 'electrum'),
|
||||
(home+'lib/servers.json', 'electrum'),
|
||||
(home+'lib/checkpoints.json', 'electrum'),
|
||||
(home+'lib/servers_testnet.json', 'electrum'),
|
||||
(home+'lib/checkpoints_testnet.json', 'electrum'),
|
||||
(home+'lib/*.json', 'electrum'),
|
||||
(home+'lib/wordlist/english.txt', 'electrum/wordlist'),
|
||||
(home+'lib/locale', 'electrum/locale'),
|
||||
(home+'plugins', 'electrum_plugins'),
|
||||
|
|
12
setup.py
12
setup.py
|
@ -65,6 +65,7 @@ setup(
|
|||
'electrum_plugins.keepkey',
|
||||
'electrum_plugins.labels',
|
||||
'electrum_plugins.ledger',
|
||||
'electrum_plugins.revealer',
|
||||
'electrum_plugins.trezor',
|
||||
'electrum_plugins.digitalbitbox',
|
||||
'electrum_plugins.trustedcoin',
|
||||
|
@ -76,17 +77,10 @@ setup(
|
|||
'electrum_plugins': 'plugins',
|
||||
},
|
||||
package_data={
|
||||
'': ['*.txt', '*.json', '*.ttf', '*.otf'],
|
||||
'electrum': [
|
||||
'servers.json',
|
||||
'servers_testnet.json',
|
||||
'servers_regtest.json',
|
||||
'currencies.json',
|
||||
'checkpoints.json',
|
||||
'checkpoints_testnet.json',
|
||||
'www/index.html',
|
||||
'wordlist/*.txt',
|
||||
'locale/*/LC_MESSAGES/electrum.mo',
|
||||
]
|
||||
],
|
||||
},
|
||||
scripts=['electrum'],
|
||||
data_files=data_files,
|
||||
|
|
Loading…
Add table
Reference in a new issue