forked from nucypher/nucypher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
63 lines (58 loc) · 1.07 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
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[requires]
python_version = "3"
[packages]
# NuCypher
umbral = "==0.1.3a2"
constant-sorrow = ">=0.1.0a9"
bytestring-splitter = ">=1.3.0"
hendrix = ">=3.2.5"
# Cryptography
pyopenssl = "*"
cryptography = ">=2.3"
pysha3="*"
# Utilities
maya = "*"
sqlalchemy = "*"
marshmallow = "*"
# Web
requests = "*"
flask = "*"
flask_sqlalchemy = "*"
# Third-Party Ethereum
py-evm = "*"
eth-tester = "*"
coincurve = "*"
web3 = "*"
py-geth = "*"
# CLI / Configuration
appdirs = "*"
click = ">=7.0"
colorama = "*"
tabulate = "*"
[dev-packages]
# Pytest
pytest = "*"
pytest-xdist = "*"
pytest-twisted = "*"
pytest-cov = "*"
pytest-mock = "*"
# Tools
hypothesis = "*"
pre-commit = "*"
pyflakes = "*"
bandit = "*"
mypy = "*"
coverage = "*"
# Develop & Deploy
py-solc-x = "*"
[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