https://gitlab.com/tezos/tezos
Raw File
Tip revision: 9b756fa0069483b04a93de2e7b6ca7bb30678a7a authored by Fedor Sheremetyev on 18 January 2022, 18:09:57 UTC
Ithaca2: vanity nonce
Tip revision: 9b756fa
pyproject.toml
# If you modify this file, generate the lock file using `poetry lock` and copy
# the resulting poetry.lock file with this one in https://gitlab.com/tezos/opam-repository
[tool.poetry]
name = "tezos"
version = "0.1.0"
description = "Python tests suites & scripts for Tezos"

readme = "README.md"

authors = [
  "Tezos community <tezos@tezos.com>"
]
repository = "https://gitlab.com/tezos/tezos"
homepage = "https://gitlab.com/tezos/tezos"

keywords = ["tezos"]


[tool.poetry.dependencies]
python = "~3.9"

base58check = "1.0.2"
ed25519 = "1.4"
# Set to 0.790 because the tests replication give duplicated modules errors with
# mypy >= 0.8.
# Replace with `mypy = "*"` when the tests have been refactorized.
mypy = "0.790"
mypy-extensions = "0.4.3"
pyblake2 = "1.1.2"
pycryptodome = "3.9.7"
pycodestyle = "2.7.0"
py_ecc = "2.0.0"
pylint = "2.11.1"
pytest = "6.2.5"
pytest-regtest = { "git" = "https://gitlab.com/nomadic-labs/pytest-regtest", branch="fc5bd9b2" }
pytest-timeout = "1.4.2"
requests = "2.26.0"
black = "^20.8b1"
# Used to validate the OpenAPI spec.
openapi-spec-validator = "0.2.9"

# docs/ dependencies
recommonmark = "0.7.1"
sphinx = "4.2.0"
sphinx-rtd-theme = "0.5.2"

# scripts/b58_prefix dependencies
base58 = "2.1.0"
fire = "0.4.0"

[tool.black]
line-length = 80
skip-string-normalization = true
back to top