setup: Use packages instead of py_modules

Fixes #176
This commit is contained in:
Saleem Rashid 2017-12-18 17:55:04 +00:00 committed by Pavol Rusnak
parent feec0a572c
commit 90c49e3386
1 changed files with 3 additions and 20 deletions

View File

@ -25,27 +25,10 @@ setup(
author_email='info@trezor.io',
description='Python library for communicating with TREZOR Hardware Wallet',
url='https://github.com/trezor/python-trezor',
py_modules=[
'trezorlib.ckd_public',
'trezorlib.client',
'trezorlib.coins',
'trezorlib.debuglink',
'trezorlib.ed25519cosi',
'trezorlib.ed25519raw',
'trezorlib.mapping',
packages=[
'trezorlib',
'trezorlib.messages',
'trezorlib.protobuf',
'trezorlib.protocol_v1',
'trezorlib.protocol_v2',
'trezorlib.qt.pinmatrix',
'trezorlib.tools',
'trezorlib.transport',
'trezorlib.transport_bridge',
'trezorlib.transport_hid',
'trezorlib.transport_pipe',
'trezorlib.transport',
'trezorlib.transport_udp',
'trezorlib.tx_api',
'trezorlib.qt',
],
scripts=['trezorctl'],
install_requires=install_requires,