mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-05 05:15:12 +00:00
parent
2dfef9dde6
commit
0b6ce657b1
1 changed files with 3 additions and 1 deletions
4
setup.py
4
setup.py
|
@ -57,7 +57,9 @@ extras_require = {
|
|||
'tests': ['pycryptodomex>=3.7', 'cryptography>=2.1'],
|
||||
}
|
||||
# 'full' extra that tries to grab everything an enduser would need (except for libsecp256k1...)
|
||||
extras_require['full'] = [pkg for sublist in ['hardware', 'gui', 'crypto'] for pkg in sublist]
|
||||
extras_require['full'] = [pkg for sublist in
|
||||
(extras_require['hardware'], extras_require['gui'], extras_require['crypto'])
|
||||
for pkg in sublist]
|
||||
# legacy. keep 'fast' extra working
|
||||
extras_require['fast'] = extras_require['crypto']
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue