Revision d9ecf96450ae60c79cfe2dd5b5773585e2e64cb5 authored by Marge Bot on 06 February 2024, 07:59:16 UTC, committed by Marge Bot on 06 February 2024, 07:59:16 UTC
Co-authored-by: Mehdi Bouaziz <mehdi.bouaziz@nomadic-labs.com>

Approved-by: Lucas Randazzo <lucas.randazzo@nomadic-labs.com>
Approved-by: Paul Laforgue <paul.laforgue@nomadic-labs.com>
Approved-by: Zay Dargaye <zaynah.dargaye@nomadic-labs.com>
Approved-by: Julien <julien.tesson@nomadic-labs.com>

See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11374
2 parent s 6ac8e79 + 6dedee7
Raw File
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 documentation & 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.11"

# developer tools
mypy = "0.942"
mypy-extensions = "0.4.3"
pycodestyle = "2.7.0"
pylint = "3.0.2"
black = "22.3.0"

# pytest is used by scripts/ci/coverage.py and scripts/b58_prefix
pytest = "6.2.5"

# docs/ dependencies
sphinx = "4.2.0"
sphinx-rtd-theme = "0.5.2"
types-pygments = "2.14.0.1"
types-docutils = "0.19.1.2"

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

# scripts/ci/coverage.py dependencies
python-gitlab = "2.10.1"

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