From 3358906c65d1b32bd0faf1a5d1029b6be482ded2 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sun, 22 Feb 2015 14:28:47 +0100 Subject: [PATCH] add trezorctl to package and bump version --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 121d824..a346883 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup( name='trezor', - version='0.6.1', + version='0.6.2', author='Bitcoin TREZOR', author_email='info@bitcointrezor.com', description='Python library for communicating with TREZOR Bitcoin Hardware Wallet', @@ -26,6 +26,7 @@ setup( 'trezorlib.tx_api', 'trezorlib.types_pb2', ], + scripts = ['trezorctl'], test_suite='tests', install_requires=['ecdsa>=0.9', 'protobuf==2.5.0', 'mnemonic>=0.8', 'hidapi>=0.7.99'], include_package_data=True,