mirror of https://github.com/nucypher/nucypher.git
73 lines
1.5 KiB
TOML
73 lines
1.5 KiB
TOML
[[source]]
|
|
url = "https://pypi.python.org/simple"
|
|
verify_ssl = true
|
|
name = "pypi"
|
|
|
|
[requires]
|
|
python_version = "3"
|
|
|
|
[packages]
|
|
# NuCypher
|
|
constant-sorrow = ">=0.1.0a9"
|
|
bytestring-splitter = ">=2.4.0"
|
|
hendrix = ">=3.4"
|
|
nucypher-core = ">=0.4.0"
|
|
# Cryptography
|
|
pyopenssl = "*"
|
|
cryptography = ">=3.2"
|
|
pysha3="*"
|
|
pynacl= ">=1.4.0"
|
|
# Utilities
|
|
maya = "*"
|
|
tzlocal = "==2.1"
|
|
marshmallow = "*"
|
|
msgpack = "*"
|
|
mako = "*"
|
|
qrcode = {extras = ["pil"], version = "*"}
|
|
# Web
|
|
requests = "*"
|
|
flask = "*"
|
|
# 2.1.0 removed `JSONWebSignatureSerializer`, which `flask_httpasswd` depends on
|
|
# (and it does not cap the version of `itsdangerous` itself)
|
|
itsdangerous = "<2.1.0"
|
|
jinja2 = "<3.1.0"
|
|
# Third-Party Ethereum
|
|
py-evm = "*"
|
|
eth-tester = "*"
|
|
web3 = "*"
|
|
eth-utils = "*"
|
|
eip712-structs = "*"
|
|
# CLI / Configuration
|
|
appdirs = "*"
|
|
click = ">=7.0"
|
|
colorama = "*"
|
|
tabulate = "*"
|
|
|
|
[dev-packages]
|
|
# Pytest
|
|
# pytest==7 causes problems with autouse mocks and config in `.circleci` folder.
|
|
# See https://github.com/pytest-dev/pytest/issues/9703
|
|
pytest = "<7"
|
|
pytest-xdist = "*"
|
|
pytest-twisted = "*"
|
|
pytest-cov = "*"
|
|
pytest-mock = "*"
|
|
pytest-timeout = "*"
|
|
# Tools
|
|
hypothesis = "*"
|
|
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
|