-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1017 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 1017 Bytes
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
[project]
name = "winforge"
version = "1.5.1"
requires-python = ">=3.11"
dependencies = [
"pyyaml>=6.0.3",
"requests>=2.32.4",
"beautifulsoup4>=4.15.0",
"lxml>=6.1.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.4.0",
"pytest-mock>=3.15.1",
"ruff>=0.15.17",
"mypy>=2.1.0",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
# Baseline debt, tracked for a dedicated cleanup pass. The gate must stay
# green so NEW violations actually fail CI.
select = ["E", "F", "W", "I", "B", "SIM", "DTZ"]
ignore = [
"E501", # line-too-long: long URLs/flags in build scripts; formatter handles what it can
]
[tool.ruff.lint.per-file-ignores]
# Test fixtures legitimately nest context managers for multi-file setup.
"tests/*" = ["SIM117"]
[tool.setuptools.packages.find]
include = ["scripts*", "tests*"]
[tool.mypy]
explicit_package_bases = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
ignore_missing_imports = true