Files
quantconnect--lean/Algorithm.Python/build.bat
T
Tom Hunter 1fe246278c Remove the byte order mark
Used Notepad++ to chang the file encoding from UTF-8-BOM to UTF-8 (i.e.
removed the byte order mark) which seems to be confusing the Windows
shell.  Fixes issue mentioned in #915
2017-05-14 15:11:57 +01:00

10 lines
348 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