@@ -17,8 +17,12 @@ keywords = [
1717 " virtual" ,
1818]
1919license = " MIT"
20- maintainers = [{ name = " Bernát Gábor" , email = " gaborjbernat@gmail.com" }]
21- authors = [{ name = " Bernát Gábor" , email = " gaborjbernat@gmail.com" }]
20+ maintainers = [
21+ { name = " Bernát Gábor" , email = " gaborjbernat@gmail.com" },
22+ ]
23+ authors = [
24+ { name = " Bernát Gábor" , email = " gaborjbernat@gmail.com" },
25+ ]
2226requires-python = " >=3.9"
2327classifiers = [
2428 " Development Status :: 5 - Production/Stable" ,
@@ -37,7 +41,7 @@ dynamic = [
3741 " version" ,
3842]
3943dependencies = [
40- " Sphinx >=7.3.5" ,
44+ " sphinx >=7.3.5" ,
4145]
4246optional-dependencies.docs = [
4347 " furo>=2024.1.29" ,
@@ -48,7 +52,7 @@ optional-dependencies.numpy = [
4852optional-dependencies.testing = [
4953 " covdefaults>=2.3" ,
5054 " coverage>=7.4.4" ,
51- " defusedxml>=0.7.1" , # required by sphinx.testing
55+ " defusedxml>=0.7.1" , # required by sphinx.testing
5256 " diff-cover>=9" ,
5357 " pytest>=8.1.1" ,
5458 " pytest-cov>=5" ,
@@ -70,7 +74,9 @@ line-length = 120
7074[tool .ruff ]
7175line-length = 120
7276target-version = " py39"
73- lint.select = [" ALL" ]
77+ lint.select = [
78+ " ALL" ,
79+ ]
7480lint.isort = { known-first-party = [
7581 " sphinx_autodoc_typehints" ,
7682 " tests" ,
@@ -111,7 +117,9 @@ write-changes = true
111117count = true
112118
113119[tool .pytest .ini_options ]
114- testpaths = [" tests" ]
120+ testpaths = [
121+ " tests" ,
122+ ]
115123
116124[tool .coverage ]
117125html.show_contexts = true
@@ -128,12 +136,19 @@ paths.source = [
128136 " *\\ src" ,
129137]
130138report.fail_under = 85
131- report.omit = []
139+ report.omit = [
140+ ]
132141run.parallel = true
133- run.plugins = [" covdefaults" ]
142+ run.plugins = [
143+ " covdefaults" ,
144+ ]
134145
135146[tool .mypy ]
136147python_version = " 3.10"
137148strict = true
138149exclude = " ^(.*/roots/.*)|(tests/test_integration.py)$"
139- overrides = [{ module = [" sphobjinv.*" ], ignore_missing_imports = true }]
150+ overrides = [
151+ { module = [
152+ " sphobjinv.*" ,
153+ ], ignore_missing_imports = true },
154+ ]
0 commit comments