-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (41 loc) · 1.25 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# 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 <[email protected]>"
]
repository = "https://gitlab.com/tezos/tezos"
homepage = "https://gitlab.com/tezos/tezos"
keywords = ["tezos"]
[tool.poetry.dependencies]
python = "~3.10"
# developer tools
mypy = "0.942"
mypy-extensions = "0.4.3"
pycodestyle = "2.7.0"
pylint = "2.11.1"
black = "22.3.0"
# tests_python/ python testing and execution framework dependencies
pytest = "6.2.5"
pytest-regtest = { "git" = "https://gitlab.com/nomadic-labs/pytest-regtest", branch="fc5bd9b2" }
pytest-timeout = "1.4.2"
# tests_python/tests_*/test_openapi.py dependencies
requests = "2.26.0"
types-requests = "^2.27.16"
openapi-spec-validator = "0.2.9"
# tests_python/tests_*/test_crypto.py dependencies
# docs/ dependencies
sphinx = "4.2.0"
sphinx-rtd-theme = "0.5.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