@@ -6,7 +6,7 @@ requires = [
66]
77
88[project ]
9- name = " sphinx_argparse_cli "
9+ name = " sphinx-argparse-cli "
1010description = " render CLI arguments (sub-commands friendly) defined by argparse module"
1111readme = " README.md"
1212keywords = [
@@ -54,6 +54,22 @@ version.source = "vcs"
5454[tool .black ]
5555line-length = 120
5656
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+
5773[tool .coverage ]
5874html.show_contexts = true
5975html.skip_covered = false
@@ -64,26 +80,10 @@ run.parallel = true
6480run.plugins = [" covdefaults" ]
6581run.relative_files = true
6682
67- [tool .isort ]
68- known_first_party = [" sphinx_argparse_cli" , " tests" ]
69- profile = " black"
70- line_length = 120
71-
7283[tool .mypy ]
7384python_version = " 3.11"
7485show_error_codes = true
7586strict = true
7687
7788[tool .pep8 ]
7889max-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