-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
81 lines (69 loc) · 1.86 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[tool.poetry]
name = "zsh-alacritty"
version = "0.3.0"
description = "zsh zsh-alacritty"
authors = ["Luis Mayta <[email protected]>"]
license = "GPL"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8,<3.12"
boto3 = "^1.26.130"
[tool.poetry.group.dev.dependencies]
requests = "^2.28.2"
bridgecrew = "*"
doc8 = "*"
grip = "*"
isort = "*"
mkdocs = "*"
mkdocs-material = "*"
mypy = "*"
parso = "*"
pre-commit = "*"
pycodestyle = "*"
pydocstyle = "*"
pygments = "*"
pylint = "*"
pymdown-extensions = "*"
pytest = ">=6.2.4"
black = "*"
[tool.poetry.extras]
docs = ["mkdocs", "mkdocs-material"]
[tool.poetry_bumpversion.file."package.json"]
search = '"version": "{current_version}"'
replace = '"version": "{new_version}"'
[tool.poetry_bumpversion.file."sonar-project.properties"]
search = 'sonar.projectVersion={current_version}'
replace = 'sonar.projectVersion={new_version}'
[tool.black]
line-length = 120
[tool.bandit]
skips = ["B101"]
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.11"
files = ["."]
show_error_codes = true
pretty = true
#strict = true
allow_redefinition = true
disallow_subclassing_any = true
#disallow_untyped_calls = true
#disallow_untyped_defs = true
#disallow_incomplete_defs = true
no_implicit_optional = true
local_partial_types = true
#no_implicit_reexport = true
strict_equality = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
#warn_return_any = true
#warn_unreachable = true
[tool.pytest.ini_options]
pythonpath = ["."]
norecursedirs = ["build", "docs", ".egg"]
addopts = "-s -v --cov zsh-alacritty --cov-report html --no-cov-on-fail --capture=no --ignore setup.py --ignore test_envs.py --ignore docs --ignore .egg --ignore .eggs --ignore .mypy_cache --ignore provision --ignore node_modules --doctest-modules"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"