c1de2f768f
Updates build scripts that create python binaries (pyc files) from python scripts using nPython. Also adds *.pyc to gitignore.
9 lines
310 B
Batchfile
Executable File
9 lines
310 B
Batchfile
Executable File
REM QuantConnect Lean Engine -- Python Build Script.
|
|
|
|
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 |