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

65 lines
989 B
TOML
Raw Normal View History

[[source]]
url = "https://pypi.org/simple"
name = "pypi"
verify_ssl = true
[packages]
# all
trezor = {editable = true,path = "./python"}
scons = "*"
2018-07-03 14:11:17 +00:00
protobuf = "==3.4.0"
pyblake2 = "*"
2019-06-26 21:11:51 +00:00
## test tools
pytest = "*"
mock = "*"
2019-06-26 21:11:51 +00:00
coverage = "==4.5.3" # coverage 5+ uses binary format
flaky = ">=3.6.1" # https://github.com/box/flaky/issues/156
pytest-random-order = "*"
tox = "*"
## test requirements
shamir-mnemonic = "*"
## typing
mypy = "*"
typing-extensions = ">=3.7.4"
2019-06-26 21:11:51 +00:00
## style
isort = ">=4.3.14"
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 = "*" # TODO this was '8' do we need that?
2019-06-26 21:11:51 +00:00
## cointool
2018-08-27 13:16:31 +00:00
click = ">=6"
"ed25519" = ">=1.4"
requests = ">=2.19"
termcolor = ">=0.1.2"
Pillow = ">=5.2.0"
# crypto
ecdsa = "*"
curve25519-donna = "*"
pyasn1 = "*"
# legacy
setuptools = ">=24.2.0"
typing = "*"
# storage
cryptography = "*"
hypothesis = "*"
[dev-packages]
scan-build = "*"
2018-07-03 14:11:17 +00:00
[pipenv]
allow_prereleases = true