@@ -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.8"
2327classifiers = [
2428 " Development Status :: 5 - Production/Stable" ,
@@ -44,7 +48,7 @@ dynamic = [
4448dependencies = [
4549 " devpi-client>=7.0.2" ,
4650 " devpi-server>=6.10" ,
47- ' typing-extensions>=4.9; python_version < " 3.11" ' ,
51+ " typing-extensions>=4.9; python_version<' 3.11' " ,
4852]
4953optional-dependencies.test = [
5054 " covdefaults>=2.3" ,
@@ -66,8 +70,14 @@ line-length = 120
6670[tool .ruff ]
6771line-length = 120
6872target-version = " py38"
69- lint.isort = { known-first-party = [" devpi_process" ], required-imports = [" from __future__ import annotations" ] }
70- lint.select = [" ALL" ]
73+ lint.isort = { known-first-party = [
74+ " devpi_process" ,
75+ ], required-imports = [
76+ " from __future__ import annotations" ,
77+ ] }
78+ lint.select = [
79+ " ALL" ,
80+ ]
7181lint.ignore = [
7282 " ANN101" , # no type annotation for self
7383 " ANN401" , # allow Any as type annotation
@@ -109,9 +119,12 @@ paths.source = [
109119 " *\\ src" ,
110120]
111121report.fail_under = 98
112- report.omit = []
122+ report.omit = [
123+ ]
113124run.parallel = true
114- run.plugins = [" covdefaults" ]
125+ run.plugins = [
126+ " covdefaults" ,
127+ ]
115128
116129[tool .mypy ]
117130python_version = " 3.11"
0 commit comments