setup.py: fix 'full' extra

got broken in adc97af58c
This commit is contained in:
SomberNight 2020-06-11 04:52:56 +02:00
parent 2dfef9dde6
commit 0b6ce657b1
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -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']