@@ -6,7 +6,7 @@ requires = [
6
6
]
7
7
8
8
[project ]
9
- name = " sphinx_argparse_cli "
9
+ name = " sphinx-argparse-cli "
10
10
description = " render CLI arguments (sub-commands friendly) defined by argparse module"
11
11
readme = " README.md"
12
12
keywords = [
@@ -54,6 +54,22 @@ version.source = "vcs"
54
54
[tool .black ]
55
55
line-length = 120
56
56
57
+ [tool .isort ]
58
+ known_first_party = [" sphinx_argparse_cli" , " tests" ]
59
+ profile = " black"
60
+ line_length = 120
61
+
62
+ [tool .flake8 ]
63
+ max-complexity = 22
64
+ max-line-length = 120
65
+ unused-arguments-ignore-abstract-functions = true
66
+ noqa-require-code = true
67
+ dictionaries = [" en_US" , " python" , " technical" , " django" ]
68
+ ignore = [
69
+ " E203" , # whitespace before ':'
70
+ " W503" , # line break before binary operator
71
+ ]
72
+
57
73
[tool .coverage ]
58
74
html.show_contexts = true
59
75
html.skip_covered = false
@@ -64,26 +80,10 @@ run.parallel = true
64
80
run.plugins = [" covdefaults" ]
65
81
run.relative_files = true
66
82
67
- [tool .isort ]
68
- known_first_party = [" sphinx_argparse_cli" , " tests" ]
69
- profile = " black"
70
- line_length = 120
71
-
72
83
[tool .mypy ]
73
84
python_version = " 3.11"
74
85
show_error_codes = true
75
86
strict = true
76
87
77
88
[tool .pep8 ]
78
89
max-line-length = " 120"
79
-
80
- [tool .flake8 ]
81
- max-complexity = 22
82
- max-line-length = 120
83
- unused-arguments-ignore-abstract-functions = true
84
- noqa-require-code = true
85
- dictionaries = [" en_US" , " python" , " technical" , " django" ]
86
- ignore = [
87
- " E203" , # whitespace before ':'
88
- " W503" , # line break before binary operator
89
- ]
0 commit comments