2014-07-26 10:22:32 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
2014-02-03 21:24:54 +00:00
|
|
|
|
|
|
|
setup(
|
2014-07-26 10:22:32 +00:00
|
|
|
name='trezor',
|
2015-10-19 17:50:59 +00:00
|
|
|
version='0.6.7',
|
2014-02-03 21:24:54 +00:00
|
|
|
author='Bitcoin TREZOR',
|
|
|
|
author_email='info@bitcointrezor.com',
|
2014-07-26 10:22:32 +00:00
|
|
|
description='Python library for communicating with TREZOR Bitcoin Hardware Wallet',
|
|
|
|
url='https://github.com/trezor/python-trezor',
|
2014-07-21 16:53:08 +00:00
|
|
|
py_modules=[
|
|
|
|
'trezorlib.ckd_public',
|
|
|
|
'trezorlib.client',
|
|
|
|
'trezorlib.debuglink',
|
|
|
|
'trezorlib.mapping',
|
|
|
|
'trezorlib.messages_pb2',
|
|
|
|
'trezorlib.protobuf_json',
|
|
|
|
'trezorlib.qt.pinmatrix',
|
|
|
|
'trezorlib.tools',
|
|
|
|
'trezorlib.transport',
|
|
|
|
'trezorlib.transport_fake',
|
|
|
|
'trezorlib.transport_hid',
|
|
|
|
'trezorlib.transport_pipe',
|
|
|
|
'trezorlib.transport_serial',
|
|
|
|
'trezorlib.transport_socket',
|
|
|
|
'trezorlib.tx_api',
|
|
|
|
'trezorlib.types_pb2',
|
|
|
|
],
|
2015-02-22 13:28:47 +00:00
|
|
|
scripts = ['trezorctl'],
|
2014-02-03 21:24:54 +00:00
|
|
|
test_suite='tests',
|
2014-08-29 21:42:35 +00:00
|
|
|
install_requires=['ecdsa>=0.9', 'protobuf==2.5.0', 'mnemonic>=0.8', 'hidapi>=0.7.99'],
|
2014-02-03 21:24:54 +00:00
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
classifiers=[
|
2015-01-30 22:52:14 +00:00
|
|
|
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
|
2014-02-03 21:24:54 +00:00
|
|
|
'Operating System :: POSIX :: Linux',
|
2014-07-26 10:22:32 +00:00
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
|
|
'Operating System :: MacOS :: MacOS X',
|
2014-02-03 21:24:54 +00:00
|
|
|
],
|
|
|
|
)
|