We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29274a9 commit e67ab44Copy full SHA for e67ab44
pyproject.toml
@@ -45,15 +45,12 @@ dev = [
45
[tool.setuptools]
46
packages = [ "iniconfig" ]
47
package-dir = { "" = "src" }
48
-
49
-[tool.setuptools.package-data]
50
-iniconfig = [ "py.typed" ]
+package-data.iniconfig = [ "py.typed" ]
51
52
[tool.setuptools_scm]
53
write_to = "src/iniconfig/_version.py"
54
55
[tool.ruff]
56
57
lint.extend-select = [
58
"B", # flake8-bugbear
59
"I", # isort
@@ -63,8 +60,8 @@ lint.extend-select = [
63
60
lint.isort.force-single-line = true
64
61
lint.isort.known-first-party = [ "iniconfig" ]
65
62
66
-[tool.pytest.ini_options]
67
-testpaths = "testing"
+[tool.pytest]
+ini_options.testpaths = "testing"
68
69
[tool.mypy]
70
strict = true
0 commit comments