ecdsa: Replace vendored version with latest upstream via install_requires

Closes https://github.com/espressif/esptool/pull/230

(along with the switch of some dependencies to "pip install .[dev]")
This commit is contained in:
Angus Gratton
2020-10-26 17:58:35 +11:00
parent 2db5fd9d98
commit e3ab7c263c
14 changed files with 2 additions and 3617 deletions

View File

@@ -113,11 +113,11 @@ setup(
install_requires=[
'bitstring>=3.1.6',
'cryptography>=2.1.4',
'ecdsa',
'ecdsa>=0.16.0',
'pyserial>=3.0',
'reedsolo>=1.5.3,<=1.5.4',
],
packages=find_packages(exclude=['ecdsa']),
packages=find_packages(),
scripts=scripts,
entry_points=entry_points,
)