-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
62 lines (55 loc) · 1.07 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
[tool.poetry]
name = "algokit-fullstack-template"
version = "0.1.0"
description = ""
authors = ["MakerX <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.6"
black = { extras = ["d"], version = "^22.10.0" }
mypy = "^1.1.1"
jinja2 = ">=3.1.1"
pytest = "^7.2.2"
types-pyyaml = "^6.0.12.12"
pyyaml = ">=6.0.1"
pytest-xdist = "^3.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
select = [
"E",
"F",
"ANN",
"UP",
"N",
"C4",
"B",
"A",
"YTT",
"W",
"FBT",
"Q",
"RUF",
"I",
]
extend-exclude = ["examples/*", "template_content"]
ignore = [
"ANN101", # no type for self
"ANN102", # no type for cls
]
unfixable = ["B", "RUF"]
[tool.pytest.ini_options]
pythonpath = ["tests"]
testpaths = ["tests"]
[tool.mypy]
python_version = "3.10"
check_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = true
allow_untyped_defs = false
strict_equality = true
exclude = ["examples/*", "template_content"]