clan-app: Improve install-desktop.sh and add new desktop icons

This commit is contained in:
Qubasa
2024-07-17 13:24:38 +02:00
parent f317495e80
commit 8f74a2d1de
21 changed files with 20 additions and 80 deletions

View File

@@ -15,7 +15,7 @@ Documentation = "https://docs.clan.lol/"
Repository = "https://git.clan.lol/clan/clan-core"
[tool.setuptools.packages.find]
exclude = ["result"]
exclude = ["result", "**/__pycache__"]
[tool.setuptools.package-data]
clan_app = ["**/assets/*"]
@@ -30,7 +30,7 @@ norecursedirs = "tests/helpers"
markers = ["impure"]
[tool.mypy]
python_version = "3.11"
python_version = "3.12"
warn_redundant_casts = true
disallow_untyped_calls = true
disallow_untyped_defs = true
@@ -42,7 +42,7 @@ ignore_missing_imports = true
[tool.ruff]
target-version = "py311"
target-version = "py312"
line-length = 88
lint.select = ["E", "F", "I", "U", "N", "RUF", "ANN", "A"]
lint.ignore = ["E501", "E402", "N802", "ANN101", "ANN401", "A003"]