From fc2cc7a2849929e4721967372f06b3dc6513b856 Mon Sep 17 00:00:00 2001 From: Chakib Benziane Date: Sun, 18 Sep 2016 23:58:10 +0200 Subject: [PATCH] Avoid repeating keyword argument Repeating the keyword argument breaks package build with the following error: "SyntaxError: keyword argument" repeated --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 7ec5c26..b4e791e 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup( ], scripts = ['trezorctl'], 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, zip_safe=False, classifiers=[ @@ -38,5 +38,4 @@ setup( 'Operating System :: Microsoft :: Windows', 'Operating System :: MacOS :: MacOS X', ], - install_requires = ['setuptools>=19.0'], )