Add vdf dependency

This commit is contained in:
Toast 2025-06-02 00:10:28 +02:00
parent 36f0c20985
commit 426e771313
2 changed files with 7 additions and 1 deletions

View file

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

View file

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