1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 06:19:27 +00:00
trezor-firmware/Pipfile

77 lines
1.3 KiB
TOML
Raw Normal View History

[[source]]
url = "https://pypi.org/simple"
name = "pypi"
verify_ssl = true
[packages]
# all
trezor = {editable = true,path = "./python"}
scons = "*"
2020-08-08 15:49:44 +00:00
protobuf = "*"
pyblake2 = "*"
Pyro4 = "*"
2019-12-20 14:18:37 +00:00
nanopb = "==0.4.1"
virtualenv = "==20.0.23" # https://github.com/pypa/virtualenv/issues/1873
2019-06-26 21:11:51 +00:00
## test tools
pytest = "*"
mock = "*"
coverage = "<5" # coverage 5+ uses binary sqlite format
flaky = ">=3.6.1" # https://github.com/box/flaky/issues/156
pytest-ordering = "*"
pytest-random-order = "*"
pytest-timeout = "*"
tox = "*"
2019-12-29 20:42:03 +00:00
dominate = "*"
2020-04-08 14:23:43 +00:00
# hardware tests
pyserial = "*"
## test requirements
shamir-mnemonic = "*"
fido2 = ">=0.8.0"
## typing
mypy = "*"
typing-extensions = ">=3.7.4"
2019-06-26 21:11:51 +00:00
## style
2020-08-08 15:49:44 +00:00
isort = "<5" # 5 changes lots of stuff that need to be addressed first: https://timothycrosley.github.io/isort/docs/upgrade_guides/5.0.0/
flake8 = ">=3.7.0"
2018-07-03 14:11:17 +00:00
black = "*"
mako = ">=1.0.7"
munch = ">=2.3.2"
autoflake = "*"
2018-07-03 14:11:17 +00:00
# common
demjson = "*"
graphviz = "*"
2019-06-26 21:11:51 +00:00
## cointool
2018-08-27 13:16:31 +00:00
click = ">=6"
ed25519 = ">=1.4"
2018-08-27 13:16:31 +00:00
requests = ">=2.19"
termcolor = ">=0.1.2"
Pillow = ">=5.2.0"
# crypto
2019-10-08 19:27:57 +00:00
ecdsa = ">=0.13.3"
curve25519-donna = "*"
pyasn1 = "*"
# legacy
setuptools = ">=24.2.0"
typing = "*"
# storage
cryptography = "*"
2020-08-08 15:49:44 +00:00
hypothesis = "*"
attrs = "*"
2020-01-30 15:00:08 +00:00
inotify = "*"
[dev-packages]
scan-build = "*"
2018-07-03 14:11:17 +00:00
[pipenv]
allow_prereleases = true