This commit is contained in:
nose
2025-12-17 14:17:46 -08:00
parent 5104689a53
commit faa10c2d37
5 changed files with 220 additions and 58 deletions

18
scripts/setup.ps1 Normal file
View File

@@ -0,0 +1,18 @@
# scripts/setup.ps1 - DEPRECATED wrapper that calls the Python setup script
$ErrorActionPreference = 'Stop'
# Determine repository root (one level up from script directory)
$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
$repoRoot = Resolve-Path (Join-Path $scriptDir '..')
Push-Location $repoRoot
try {
Write-Host "Calling Python setup script (scripts/setup.py)..."
python ./scripts/setup.py @args
} catch {
Write-Error "Failed to run python ./scripts/setup.py: $_"
exit 1
} finally {
Pop-Location
}