Files
quantconnect--lean/Algorithm.Python/build.sh
T
AlexCatarino c1de2f768f Tools for python scripts compilation
Updates build scripts that create python binaries (pyc files) from python scripts using nPython.
Also adds *.pyc to gitignore.
2017-04-11 12:09:16 +01:00

7 lines
148 B
Bash
Executable File

#!/bin/bash
mono nPython.exe -m compileall -lq .
cp *.pyc ../Launcher/bin/Debug/
cp *.pyc ../Launcher/bin/Release/
cp *.pyc ../Tests/bin/Debug/