| 123456789101112131415161718 | # Build a wheel and single file executable# Configure the build environment& $PSScriptRoot\win-setup-build-env.ps1# Clean the old buildpython setup.py clean# Build the extension inplacepython setup.py build_ext --inplace# Run pip install to install install_requires of borg.pip install -v -e .# Build the wheelpython setup.py bdist_wheelpyinstaller -y scripts/borg.exe.spec
 |