nucypher/Pipfile

73 lines
1.5 KiB
Plaintext
Raw Normal View History

2018-04-02 06:09:17 +00:00
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
2018-11-09 15:19:54 +00:00
[requires]
python_version = "3"
[packages]
# NuCypher
constant-sorrow = ">=0.1.0a9"
2021-08-17 20:58:38 +00:00
bytestring-splitter = ">=2.4.0"
hendrix = ">=3.4"
nucypher-core = ">=0.4.0"
# Cryptography
pyopenssl = "*"
cryptography = ">=3.2"
pysha3="*"
2022-01-24 07:37:13 +00:00
pynacl= ">=1.4.0"
# Utilities
maya = "*"
tzlocal = "==2.1"
2020-01-04 01:24:43 +00:00
marshmallow = "*"
msgpack = "*"
mako = "*"
qrcode = {extras = ["pil"], version = "*"}
# Web
requests = "*"
flask = "*"
2022-01-24 07:37:13 +00:00
# 2.1.0 removed `JSONWebSignatureSerializer`, which `flask_httpasswd` depends on
# (and it does not cap the version of `itsdangerous` itself)
itsdangerous = "<2.1.0"
2022-04-05 19:34:34 +00:00
jinja2 = "<3.1.0"
# Third-Party Ethereum
2022-04-05 04:49:55 +00:00
py-evm = "*"
eth-tester = "*"
web3 = "*"
eth-utils = "*"
2022-09-15 16:10:17 +00:00
eip712-structs = "*"
2018-11-09 15:19:54 +00:00
# CLI / Configuration
2018-08-06 22:21:08 +00:00
appdirs = "*"
2018-11-09 15:19:54 +00:00
click = ">=7.0"
colorama = "*"
2020-01-31 06:39:58 +00:00
tabulate = "*"
[dev-packages]
# Pytest
2022-01-24 07:37:13 +00:00
# pytest==7 causes problems with autouse mocks and config in `.circleci` folder.
# See https://github.com/pytest-dev/pytest/issues/9703
pytest = "<7"
2019-05-27 10:05:42 +00:00
pytest-xdist = "*"
2018-07-04 00:50:49 +00:00
pytest-twisted = "*"
2019-04-06 03:49:52 +00:00
pytest-cov = "*"
pytest-mock = "*"
2020-09-30 21:04:47 +00:00
pytest-timeout = "*"
# Tools
hypothesis = "*"
2021-08-17 20:58:38 +00:00
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