forked from nucypher/nucypher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
73 lines (68 loc) · 1.47 KB
/
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[requires]
python_version = "3"
[packages]
# NuCypher
constant-sorrow = ">=0.1.0a9"
bytestring-splitter = ">=2.4.0"
hendrix = ">=3.4"
lmdb = "*"
nucypher-core = ">=0.2"
# Cryptography
pyopenssl = "*"
cryptography = ">=3.2"
pysha3="*"
pynacl= ">=1.4.0"
# Utilities
maya = "*"
tzlocal = "==2.1"
marshmallow = "*"
msgpack = "*"
mako = "*"
qrcode = {extras = ["pil"], version = "*"}
trezor = "*"
# Web
requests = "*"
flask = "*"
# 2.1.0 removed `JSONWebSignatureSerializer`, which `flask_httpasswd` depends on
# (and it does not cap the version of `itsdangerous` itself)
itsdangerous = "<2.1.0"
jinja2 = "<3.1.0"
# Third-Party Ethereum
py-evm = "*"
eth-tester = "*"
web3 = "*"
eth-utils = "*"
# CLI / Configuration
appdirs = "*"
click = ">=7.0"
colorama = "*"
tabulate = "*"
[dev-packages]
# Pytest
# pytest==7 causes problems with autouse mocks and config in `.circleci` folder.
# See https://github.com/pytest-dev/pytest/issues/9703
pytest = "<7"
pytest-xdist = "*"
pytest-twisted = "*"
pytest-cov = "*"
pytest-mock = "*"
pytest-timeout = "*"
# Tools
hypothesis = "*"
pre-commit = "2.12.1"
pyflakes = "*"
bandit = "*"
mypy = "*"
coverage = "*"
py-solc-x = "==0.10.1"
[scripts]
install-solc = "python3 scripts/installation/install_solc.py"
estimate-gas = "python3 tests/metrics/estimate_gas.py"
nucypher-deploy = "python3 nucypher/cli/deploy.py"
nucypher = "python3 nucypher/cli/main.py"
[pipenv]
allow_prereleases = true