Install all necessary libraries correctly

Some libraries were missing, so install them in the setup.py
This commit is contained in:
Andrew Chow 2019-01-06 14:36:15 -05:00
parent 0f6081ffd3
commit 47c3951eb4
2 changed files with 4 additions and 2 deletions

View File

@ -14,8 +14,9 @@ Install all of the libraries using `pip` (in virtualenv or system):
pip3 install hidapi # HID API needed in general
pip3 install trezor[hidapi] # Trezor One
pip3 install btchip-python # Ledger Nano S
pip3 install ecdsa # Needed for btchip-python but is not installed by it
pip3 install keepkey # KeepKey
pip3 install ckcc-protocol # Coldcard
pip3 install ckcc-protocol[cli] # Coldcard
pip3 install pyaes # For digitalbitbox
```
## Install

View File

@ -18,8 +18,9 @@ setuptools.setup(
'trezor>=0.11.0', # Trezor One
'btchip-python', # Ledger Nano S
'keepkey', # KeepKey
'ckcc-protocol', # Coldcard
'ckcc-protocol[cli]', # Coldcard
'pyaes',
'ecdsa', # Needed for Ledger but their library does not install it
],
python_requires='>=3',
classifiers=[