mirror of
https://github.com/fergalmoran/picard.git
synced 2025-12-22 09:18:18 +00:00
29 lines
800 B
TOML
29 lines
800 B
TOML
[build-system]
|
|
requires = ["setuptools>=62.4.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.isort]
|
|
sections = [
|
|
"FUTURE", "STDLIB", "FIRSTPARTY", "THIRDPARTY", "QT", "TEST", "PICARD", "LOCALFOLDER",
|
|
"RESOURCES", "PICARD_UI"
|
|
]
|
|
default_section = "LOCALFOLDER"
|
|
known_first_party = []
|
|
known_picard = ["picard"]
|
|
known_picard_ui = ["picard.ui"]
|
|
known_qt = ["PyQt6"]
|
|
known_resources = ["picard.resources"]
|
|
known_test = ["test.*"]
|
|
known_third_party = ["dateutil", "fasteners", "mutagen", "yaml"]
|
|
skip_glob = ["picard/ui/forms/ui_*.py", "picard/resources.py"]
|
|
combine_as_imports = true
|
|
float_to_top = false
|
|
force_grid_wrap = 2
|
|
force_sort_within_sections = true
|
|
include_trailing_comma = true
|
|
indent = " "
|
|
lines_after_imports = 2
|
|
multi_line_output = 3
|
|
order_by_type = true
|
|
use_parentheses = true
|