forked from nucypher/nucypher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
67 lines (62 loc) · 1.21 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
[[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.0a8"
bytestring-splitter = ">=1.3.0"
hendrix = ">=3.2.5"
# Third-Party
pyopenssl = "*"
cryptography = ">=2.3"
pysha3="*"
requests = "*"
sqlalchemy = "*"
marshmallow = "*"
maya = "*"
flask = "*"
flask_sqlalchemy = "*"
# Third-Party Ethereum
py-evm = "*"
eth-tester = "*"
coincurve = "*"
web3 = "*"
py-geth = "*"
# CLI / Configuration
appdirs = "*"
click = ">=7.0"
colorama = "*"
flask-limiter = "*"
tabulate = "*"
[dev-packages]
# Pytest
pytest = "*"
pytest-xdist = "*"
pytest-mypy = "*"
pytest-twisted = "*"
pytest-cov = "*"
pytest-mock = "*"
# Tools
mypy = "*"
# Coverage
coverage = "*"
# Deployment
py-solc = {git = "https://github.com/nucypher/py-solc.git",ref = "v5.0.0-eol.0"}
ansible = "*"
bumpversion = "*"
# Documentation
sphinx = "*"
recommonmark = "*"
sphinx_rtd_theme = "*"
aafigure = "*"
[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