python-trezor/setup.py

40 lines
1.2 KiB
Python
Raw Normal View History

2014-07-26 03:22:32 -07:00
#!/usr/bin/env python
from setuptools import setup
2014-02-03 13:24:54 -08:00
setup(
2014-07-26 03:22:32 -07:00
name='trezor',
2015-01-30 09:50:50 -08:00
version='0.6.0',
2014-02-03 13:24:54 -08:00
author='Bitcoin TREZOR',
author_email='info@bitcointrezor.com',
2014-07-26 03:22:32 -07:00
description='Python library for communicating with TREZOR Bitcoin Hardware Wallet',
url='https://github.com/trezor/python-trezor',
2014-07-21 09:53:08 -07: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',
],
2014-02-03 13:24:54 -08:00
test_suite='tests',
2014-08-29 14:42:35 -07:00
install_requires=['ecdsa>=0.9', 'protobuf==2.5.0', 'mnemonic>=0.8', 'hidapi>=0.7.99'],
2014-02-03 13:24:54 -08:00
include_package_data=True,
zip_safe=False,
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux',
2014-07-26 03:22:32 -07:00
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
2014-02-03 13:24:54 -08:00
],
)