From ef21a91cebaa972f772fe53653c946dbae7ad4fc Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Tue, 27 Sep 2016 22:39:31 +0200 Subject: [PATCH] fix install --- setup.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 7d3f728660..eb69615a14 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup( name='trezor', - version='0.7.1', + version='0.7.2', author='Bitcoin TREZOR', author_email='info@bitcointrezor.com', description='Python library for communicating with TREZOR Bitcoin Hardware Wallet', @@ -18,12 +18,10 @@ setup( 'trezorlib.qt.pinmatrix', 'trezorlib.tools', 'trezorlib.transport', - 'trezorlib.transport_fake', - 'trezorlib.transport_hid', 'trezorlib.transport_bridge', + 'trezorlib.transport_hid', 'trezorlib.transport_pipe', - 'trezorlib.transport_serial', - 'trezorlib.transport_socket', + 'trezorlib.transport_udp', 'trezorlib.tx_api', 'trezorlib.types_pb2', ],