Avoid repeating keyword argument
Repeating the keyword argument breaks package build with the following error: "SyntaxError: keyword argument" repeated
This commit is contained in:
parent
ea98665d83
commit
fc2cc7a284
3
setup.py
3
setup.py
@ -29,7 +29,7 @@ setup(
|
|||||||
],
|
],
|
||||||
scripts = ['trezorctl'],
|
scripts = ['trezorctl'],
|
||||||
test_suite='tests',
|
test_suite='tests',
|
||||||
install_requires=['ecdsa>=0.9', 'protobuf>=2.6.1', 'mnemonic>=0.8', 'hidapi>=0.7.99'],
|
install_requires=['ecdsa>=0.9', 'protobuf>=2.6.1', 'mnemonic>=0.8', 'hidapi>=0.7.99', 'setuptools>=19.0'],
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
@ -38,5 +38,4 @@ setup(
|
|||||||
'Operating System :: Microsoft :: Windows',
|
'Operating System :: Microsoft :: Windows',
|
||||||
'Operating System :: MacOS :: MacOS X',
|
'Operating System :: MacOS :: MacOS X',
|
||||||
],
|
],
|
||||||
install_requires = ['setuptools>=19.0'],
|
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user