mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-02 04:18:20 +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 sys
|
||||||
import tempfile
|
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.build_py import build_py
|
||||||
from setuptools.command.develop import develop
|
from setuptools.command.develop import develop
|
||||||
|
|
||||||
@ -79,14 +79,7 @@ setup(
|
|||||||
author_email='info@trezor.io',
|
author_email='info@trezor.io',
|
||||||
description='Python library for communicating with TREZOR Hardware Wallet',
|
description='Python library for communicating with TREZOR Hardware Wallet',
|
||||||
url='https://github.com/trezor/python-trezor',
|
url='https://github.com/trezor/python-trezor',
|
||||||
packages=[
|
packages=find_packages(),
|
||||||
'trezorlib',
|
|
||||||
'trezorlib.transport',
|
|
||||||
'trezorlib.messages',
|
|
||||||
'trezorlib.qt',
|
|
||||||
'trezorlib.tests.device_tests',
|
|
||||||
'trezorlib.tests.unit_tests',
|
|
||||||
],
|
|
||||||
package_data={
|
package_data={
|
||||||
'trezorlib': ['coins.json'],
|
'trezorlib': ['coins.json'],
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user