-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (41 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
52 lines (41 loc) · 1.02 KB
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
[tool.poetry]
name = "tezos"
version = "0.1.0"
description = "Python documentation & scripts for Tezos"
readme = "README.md"
package-mode = false
authors = [
"Tezos community <[email protected]>"
]
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"
sphinx-sitemap = "2.6.0"
sphinxcontrib-mermaid = "1.0.0"
# scripts/b58_prefix dependencies
base58 = "2.1.0"
fire = "0.4.0"
# scripts/ci/coverage.py dependencies
python-gitlab = "2.10.1"
sphinx-pushfeedback = "^0.1.8"
sphinx-biel = "^0.1.8"
[tool.black]
line-length = 80
skip-string-normalization = true