spaCy/venv.ps1
2015-12-22 23:25:38 +01:00

26 lines
545 B
PowerShell

param (
[string]$python = $(throw "-python is required."),
[string]$install_mode = $(throw "-install_mode is required."),
[string]$pip_date
[string]$compiler
)
$ErrorActionPreference = "Stop"
if(!(Test-Path -Path ".build"))
{
virtualenv .build --system-site-packages --python $python
}
if($compiler)
{
"[build]`r`ncompiler=$compiler" | Out-File .\.build\Lib\distutils\distutils.cfg
}
.build\Scripts\activate.ps1
python build.py prepare $pip_date
python build.py $install_mode
python build.py test
exit $LASTEXITCODE