nucypher/Pipfile

78 lines
1.7 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"
lmdb = "*"
2022-03-14 17:45:17 +00:00
nucypher-core = ">=0.1.1"
# 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 = "*"}
trezor = "*"
# 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"
# Third-Party Ethereum
2022-01-24 07:37:13 +00:00
py-evm = "<0.5"
eth-tester = "<0.6"
web3 = "<=5.12.3"
eth-utils = "<1.10"
2019-09-04 16:35:19 +00:00
py-geth = "*"
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
# Namely, the issue above was leading to an interference between `mock_transacting_power()` fixture
# and `test_ursula_init_with_local_keystore_signer()` - the mock was still present
# when that test was run, causing a failure.
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 = "*"
2020-05-26 23:27:51 +00:00
# Develop & Deploy
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