-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (36 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
47 lines (36 loc) · 1.05 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
# 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/mavryk-network/opam-repository
[tool.poetry]
name = "mavryk"
version = "0.1.0"
description = "Python documentation & scripts for Mavryk"
readme = "README.md"
authors = [
"Mavryk Dynamics <info@mavryk.io>"
]
repository = "https://gitlab.com/mavryk-network/mavryk-protocol"
homepage = "https://gitlab.com/mavryk-network/mavryk-protocol"
keywords = ["mavryk"]
[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