Use keepkey from PyPi

This commit is contained in:
Andrew Chow 2019-01-24 20:41:47 -05:00
parent bd57b8fdd8
commit 64ebad3db3
2 changed files with 2 additions and 5 deletions

View File

@ -15,7 +15,7 @@ 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 git+git://github.com/keepkey/python-keepkey.git@43fe80ae2e54b274c7b8641ff409bce4ebe04914#egg=keepkey # KeepKey. The tags and pypi don't have the right version yet, so lock to a specific commit from their git repo
pip3 install keepkey # KeepKey
pip3 install ckcc-protocol[cli] # Coldcard
pip3 install pyaes # For digitalbitbox
```

View File

@ -17,14 +17,11 @@ setuptools.setup(
'hidapi', # HID API needed in general
'trezor>=0.11.0', # Trezor One
'btchip-python', # Ledger Nano S
'keepkey==6.0.1', # KeepKey
'keepkey>=6.0.1', # KeepKey
'ckcc-protocol[cli]', # Coldcard
'pyaes',
'ecdsa', # Needed for Ledger but their library does not install it
],
dependency_links=[
'https://github.com/keepkey/python-keepkey/tarball/43fe80ae2e54b274c7b8641ff409bce4ebe04914#egg=keepkey-6.0.1' # The tags don't have the right version yet, so lock to a specific commit
],
python_requires='>=3',
classifiers=[
"Programming Language :: Python :: 3",