diff --git a/README.md b/README.md index eac933f..aaea325 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/setup.py b/setup.py index a0e402f..4832b47 100644 --- a/setup.py +++ b/setup.py @@ -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",