Automatic game path detection #18

Merged
Toast merged 3 commits from gamePathDetection into main 2025-06-02 01:26:29 +02:00
2 changed files with 7 additions and 1 deletions
Showing only changes of commit 426e771313 - Show all commits

View file

@ -15,12 +15,16 @@
ruff ruff
( (
python3.withPackages (ps: with ps;[ python3.withPackages (ps: with ps;[
# Dev dependencies
python-lsp-server python-lsp-server
pylsp-mypy pylsp-mypy
mypy mypy
setuptools-scm setuptools-scm
#App dependencies
pyside6 pyside6
tomlkit tomlkit
vdf
] ]
) )
) )

View file

@ -17,6 +17,7 @@ classifiers = [
dependencies = [ dependencies = [
"pyside6", "pyside6",
"tomlkit", "tomlkit",
"vdf",
] ]
requires-python = ">=3.6" requires-python = ">=3.6"
@ -47,7 +48,8 @@ mypy_path = "$MYPY_CONFIG_FILE_DIR/src"
module = [ module = [
"PySide6.QtGui", "PySide6.QtGui",
"PySide6.QtCore", "PySide6.QtCore",
"PySide6.QtQml" "PySide6.QtQml",
"vdf"
] ]
ignore_missing_imports = true ignore_missing_imports = true