diff --git a/pyproject.toml b/pyproject.toml index 98d48138..8b0ddd05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,11 +3,12 @@ [tool.uv.pip] index-strategy = "unsafe-best-match" -extra-index-url = [ - "https://pypi.nvidia.com", - "https://download.pytorch.org/whl/cu130", - "https://pypi.org/simple" -] +extra-index-url = [ + "https://pypi.nvidia.com", + "https://download.pytorch.org/whl/cu130", + "https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/ort-cuda-13-nightly/pypi/simple/", + "https://pypi.org/simple" +] [tool.mypy] python_version = "3.12" diff --git a/app/scripts/Start.bat b/scripts/Start.bat similarity index 88% rename from app/scripts/Start.bat rename to scripts/Start.bat index 7d709bec..1d58540d 100644 --- a/app/scripts/Start.bat +++ b/scripts/Start.bat @@ -1,11 +1,11 @@ @echo off -REM Resolve repo root whether this script lives in the repo root or app\scripts. +REM Resolve repo root whether this script lives in the repo root or scripts. SET "SCRIPT_DIR=%~dp0" IF EXIST "%SCRIPT_DIR%main.py" ( SET "REPO_ROOT=%SCRIPT_DIR%" -) ELSE IF EXIST "%SCRIPT_DIR%..\..\main.py" ( - FOR %%A IN ("%SCRIPT_DIR%..\..") DO SET "REPO_ROOT=%%~fA" +) ELSE IF EXIST "%SCRIPT_DIR%..\main.py" ( + FOR %%A IN ("%SCRIPT_DIR%..") DO SET "REPO_ROOT=%%~fA" ) ELSE ( echo [ERROR] Could not locate repo root from "%SCRIPT_DIR%". pause diff --git a/app/scripts/Start_Portable.bat b/scripts/Start_Portable.bat similarity index 100% rename from app/scripts/Start_Portable.bat rename to scripts/Start_Portable.bat