Files
quantconnect--lean/Algorithm.Python/build.bat
T
AlexCatarino a68a3e5053 Fixes build scripts
Batch scripts were moving pyc files to the wrong directory
2017-04-11 17:09:44 +01:00

10 lines
351 B
Batchfile
Executable File

REM QuantConnect Lean Engine -- Python Build Script.
del Python.Runtime.dll
REM Python Compile the Algorithm with all the files in current directory
nPython -m compileall -lq .
REM Copy to the Lean Algorithm Project
copy *.pyc ..\..\..\Launcher\bin\Debug >NUL
copy *.pyc ..\..\..\Launcher\bin\Release >NUL
copy *.pyc ..\..\..\Tests\bin\Debug >NUL