1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-26 09:28:13 +00:00

build: add Construct to requires, use package autodetection

This commit is contained in:
matejcik 2018-06-14 14:16:53 +02:00
parent 23b58cc0cb
commit 8f03bd0165
2 changed files with 2 additions and 0 deletions

View File

@ -4,5 +4,6 @@ requests>=2.4.0
click>=6.2 click>=6.2
pyblake2>=0.9.3 pyblake2>=0.9.3
libusb1>=1.6.4 libusb1>=1.6.4
construct>=2.9
pip>=6 pip>=6
typing>=3.0.0; python_version < '3.5' typing>=3.0.0; python_version < '3.5'

View File

@ -20,6 +20,7 @@ install_requires = [
'click>=6.2', 'click>=6.2',
'pyblake2>=0.9.3', 'pyblake2>=0.9.3',
'libusb1>=1.6.4', 'libusb1>=1.6.4',
'construct>=2.9',
] ]
CWD = os.path.dirname(os.path.realpath(__file__)) CWD = os.path.dirname(os.path.realpath(__file__))