Add setuptools dependency for Python 3.12+ compatibility

NodeGraphQt uses distutils which was removed from Python 3.12's
standard library. setuptools provides the compatibility shim.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
rob 2026-01-18 01:34:28 -04:00
parent cf82baef1d
commit b20abec39d
1 changed files with 1 additions and 0 deletions

View File

@ -34,6 +34,7 @@ dependencies = [
"requests>=2.28",
"PySide6>=6.5",
"NodeGraphQt>=0.6.0",
"setuptools", # Required for distutils compatibility (Python 3.12+)
]
[project.optional-dependencies]