mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-26 09:28:13 +00:00
build: use package autodetection (fixes #280)
This commit is contained in:
parent
3f93b28fe4
commit
2b366865ff
11
setup.py
11
setup.py
@ -5,7 +5,7 @@ import subprocess
|
||||
import sys
|
||||
import tempfile
|
||||
|
||||
from setuptools import setup, Command
|
||||
from setuptools import setup, Command, find_packages
|
||||
from setuptools.command.build_py import build_py
|
||||
from setuptools.command.develop import develop
|
||||
|
||||
@ -79,14 +79,7 @@ setup(
|
||||
author_email='info@trezor.io',
|
||||
description='Python library for communicating with TREZOR Hardware Wallet',
|
||||
url='https://github.com/trezor/python-trezor',
|
||||
packages=[
|
||||
'trezorlib',
|
||||
'trezorlib.transport',
|
||||
'trezorlib.messages',
|
||||
'trezorlib.qt',
|
||||
'trezorlib.tests.device_tests',
|
||||
'trezorlib.tests.unit_tests',
|
||||
],
|
||||
packages=find_packages(),
|
||||
package_data={
|
||||
'trezorlib': ['coins.json'],
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user