We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bf5073 commit 81a1c27Copy full SHA for 81a1c27
1 file changed
pyproject.toml
@@ -49,6 +49,13 @@ fail_under = 100
49
show_missing = true
50
skip_covered = true
51
52
+[tool.setuptools]
53
+include-package-data = true
54
+zip-safe = false
55
+
56
+[tool.setuptools.packages]
57
+find = {}
58
59
[tool.ruff]
60
line-length = 120
61
preview = true
@@ -142,7 +149,13 @@ docstring-code-format = true
142
149
[tool.ruff.lint.flake8-copyright]
143
150
author = "SUSE LLC"
144
151
notice-rgx = "Copyright"
145
-
146
152
[tool.ruff.lint.flake8-tidy-imports.banned-api]
147
153
"os.system".msg = "Use `subprocess.run` or `sh` library instead."
148
154
"subprocess.call".msg = "Use `subprocess.run` with `check=True`."
155
156
+[tool.pyright]
157
+include = ["src", "tests", "*.py"]
158
159
+[tool.pytest.ini_options]
160
+pythonpath = "src"
161
0 commit comments