We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c174824 commit 43e91ffCopy full SHA for 43e91ff
orthority/py.typed
pyproject.toml
@@ -50,11 +50,24 @@ packages = ['orthority']
50
[tool.setuptools.dynamic]
51
version = {attr = 'orthority.version.__version__'}
52
53
+[tool.setuptools.package-data]
54
+orthority = ['py.typed']
55
+
56
[tool.black]
57
line-length = 100
58
skip-string-normalization = true
59
60
[tool.ruff]
61
-lint = { extend-select = ['I'] }
62
format = { quote-style = 'preserve' }
63
64
+[tool.ruff.lint]
65
+select = [
66
+ "B", # flake8-bugbear
67
+ "E", # pycodestyle error
68
+ "F", # pyflakes
69
+ "I", # isort
70
+ "UP", # pyupgrade
71
+ "W", # pycodestyle warning
72
+ "RUF"
73
+]
0 commit comments