pythontools 225 Bytes DüzenleWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #!/bin/bash if [ "$BuildType" == "python" ] ; then _setup(){ info "Setup not needed" } _build(){ python3 setup.py build } _install(){ python3 setup.py install --root="$INSTALLDIR" --optimize=1 --skip-build } fi