-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
69 lines (64 loc) · 1.27 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
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[requires]
python_version = "3"
[packages]
# NuCypher
umbral = "==0.1.3a0"
constant-sorrow = ">=0.1.0a8"
bytestring-splitter = ">=1.0.0a4"
hendrix = ">=3.2.3"
# Third-Party
pyopenssl = "*"
cryptography = ">=2.3"
pysha3="*"
requests = "*"
sqlalchemy = "*"
maya = "*"
flask = "*"
flask_sqlalchemy = "*"
# Third-Party Ethereum
py-evm = "==0.2.0a39"
eth-tester = "*"
coincurve = "*"
web3 = "*"
# CLI / Configuration
sentry-sdk = "==0.5.2"
appdirs = "*"
click = ">=7.0"
colorama = "*"
boto3 = "*"
flask-limiter = "*"
[dev-packages]
# Pytest
pytest = "*"
pytest-xdist = "*"
pytest-mypy = "*"
pytest-twisted = "*"
pytest-cov = "*"
pytest-mock = "*"
# Tools
moto = "*"
mypy = "*"
# Coverage
coverage = "*"
# Deployment
py-solc = {editable = true,git = "https://github.com/nucypher/py-solc.git",ref = "v5.0.0-eol.0"}
ansible = "*"
bumpversion = "*"
# Documentation
sphinx = "*"
recommonmark = "*"
sphinx_rtd_theme = "*"
aafigure = "*"
# CLI
nucypher = {editable = true,path = "."}
[scripts]
install-solc = "scripts/installation/install_solc.sh"
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