-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
48 lines (37 loc) · 931 Bytes
/
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
[tool.poetry]
name = "tezos"
version = "0.1.0"
description = "Python documentation & scripts for Tezos"
readme = "README.md"
package-mode = false
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.12"
# 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 = "7.3.7"
sphinx-rtd-theme = "2.0.0"
sphinx_book_theme = "1.1.3"
types-pygments = "2.14.0.1"
types-docutils = "0.19.1.2"
sphinx-copybutton = "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