We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 412020b commit 0dfb452Copy full SHA for 0dfb452
pyproject.toml
@@ -57,6 +57,22 @@ examples = [
57
]
58
59
60
+[tool.hatch.build.targets.wheel.hooks.mypyc]
61
+dependencies = [
62
+ 'hatch-mypyc >=0.16.0',
63
+ 'mypy >=1.15.0',
64
+]
65
+include = [ '/src' ]
66
+enable-by-default = true
67
+mypy-args = [
68
+ '--disallow-untyped-calls',
69
+ '--disallow-untyped-defs',
70
+ '--disallow-incomplete-defs',
71
+ '--exclude="/examples,/tests"',
72
+ '--strict',
73
74
+
75
76
[tool.mypy]
77
disallow_incomplete_defs = true
78
disallow_untyped_calls = true
0 commit comments