install_deps.bat 948 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. @echo off
  2. REM Upgrade pip
  3. python -m pip install --upgrade pip
  4. REM Install cx_Freeze
  5. pip install cx_freeze
  6. REM Install the finch package and dependencies
  7. pip install .
  8. REM Clone the botocore repository using the specified version in project.
  9. for /f "delims=" %%i in ('python -c "import botocore; print(botocore.__version__)"') do set botocore_version=%%i
  10. git clone https://github.com/boto/botocore.git vendor\botocore
  11. cd vendor\botocore
  12. git checkout %botocore_version%
  13. cd..\..
  14. REM Trim the botocore data to include only S3.
  15. set "root_dir=vendor\botocore\botocore\data"
  16. for /d %%i in ("%root_dir%\*") do (
  17. call :delete_non_s3_data "%%i" "%%~nxi"
  18. )
  19. REM Install the trimmed down botocore package
  20. pip install vendor\botocore
  21. goto :eof
  22. :delete_non_s3_data
  23. set "dir=%~1"
  24. set "fname=%~2"
  25. if not "%fname:~0,2%" == "s3" (
  26. if /i not "%dir%" == "%root_dir%" (
  27. echo "Directory deleted: %dir%"
  28. rmdir /s /q "%dir%"
  29. )
  30. )
  31. goto :eof