File size: 813 Bytes
c336648 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
[project]
name = "automatic1111-extension-custom-text-overlay"
version = "0.0.0"
[project.optional-dependencies]
dev = [
"build",
"wheel",
"setuptools",
"pytest"
]
[tool.yapf]
column_limit = 10000
indent_width = 2
continuation_indent_width = 2
spaces_before_comment = 1
blank_line_before_class_docstring = false
blank_line_before_module_docstring = false
blank_line_before_nested_class_or_def = false
blank_lines_around_top_level_definition = 1
blank_lines_between_top_level_imports_and_variables = 1
allow_multiline_dictionary_keys = true
dedent_closing_brackets = true
coalesce_brackets = true
[tool.isort]
multi_line_output = 3
indent = " "
line_length = 10000
include_trailing_comma = true
split_on_trailing_comma = true
remove_redundant_aliases = true
float_to_top = true
lines_after_imports = 1
|