feat: add lint isort

This commit is contained in:
flandre 2025-06-10 20:33:00 +08:00
parent d11a99e86e
commit d66626a441

View File

@ -29,17 +29,21 @@ dependencies = [
[tool.setuptools] # configuration specific to the `setuptools` build backend.
packages = { find = { where = ["."], include = ["flandre", "flandre.*"] } }
package-data = { "flandre.assets" = ["*.svg", "*.png"], "flandre.pyqt" = ["*.ui"] }
package-data = { "flandre.assets" = [
"*.svg",
"*.png",
], "flandre.pyqt" = [
"*.ui",
] }
[dependency-groups]
dev = [
"ruff>=0.11.13",
]
dev = ["ruff>=0.11.13"]
[project.scripts]
flandre = "flandre.launcher:entrypoint"
[project.optional-dependencies]
to = [
"nvidia-nvimgcodec-cu12>=0.5.0.13",
]
to = ["nvidia-nvimgcodec-cu12>=0.5.0.13"]
[tool.ruff.lint]
extend-select = ["I"]