forked from trezor/trezor-firmware
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPipfile
55 lines (45 loc) · 802 Bytes
/
Pipfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[[source]]
url = "https://pypi.org/simple"
name = "pypi"
verify_ssl = true
[packages]
# all
trezor = {editable = true,path = "./python"}
scons = "*"
protobuf = "==3.4.0"
pyblake2 = "*"
## tests
pytest = "*"
mock = "*"
coverage = "==4.5.3" # coverage 5+ uses binary format
## style
isort = ">=4.3.14"
flake8 = ">=3.7.0"
black = "*"
mako = ">=1.0.7"
munch = ">=2.3.2"
autoflake = "*"
mypy = "*"
# common
demjson = "*"
graphviz = "*" # TODO this was '8' do we need that?
## cointool
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 = "*"
[pipenv]
allow_prereleases = true