-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (71 loc) · 1.44 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
[tool.poetry]
name = "recipe-scrapers-sage"
version = "0.1.0"
description = ""
authors = ["Matt Anderson <matt@manderscience.com>"]
readme = "README.md"
packages = [{include = "recipe_scrapers_sage"}]
[tool.poetry.dependencies]
python = ">=3.9,<4"
recipe-scrapers = ">=14"
[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"
black = ">=23.7,<25.0"
pytest = ">=7.4,<9.0"
ruff = ">=0.0.280,<0.7.2"
mypy = "^1.4.1"
duty = "^1.0.0"
git-changelog = "^2.0.0"
pytest-cov = ">=4.1,<6.0"
safety = ">=2.3.5,<4.0.0"
ipykernel = "^6.25.0"
griffe = ">=0.32.3,<1.6.0"
[tool.isort]
profile = "black"
[tool.pylint.format]
max-line-length = "88"
[tool.ruff.lint]
extend-select = [ # https://beta.ruff.rs/docs/rules/
"A",
"ANN",
"ARG",
"B",
"BLE",
"C4",
"D",
"E",
"EM",
"ERA",
"F",
"FA",
"FBT",
"FIX",
"I",
"ISC",
"ICN",
"INP",
"PERF",
"PIE",
"PL",
"PT",
"Q",
"RSE",
"RET",
"RUF",
"S",
"SIM",
"T10",
"T20",
"TCH",
"TD",
"TID",
"YTT"]
extend-ignore = ["D202", "D205", "D107"]
pydocstyle.convention = "google" # Accepts: "google", "numpy", or "pep257".
[tool.ruff.lint.extend-per-file-ignores]
"tests/*.py" = ["ANN", "S", "ARG001", "B008", "RUF015", "E501", "D100", "D103"]
"docs_gen_files.py" = ["ANN201"]
"duties.py" = ["ANN201", "ARG001"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"