module Jeka module Compiler class Python < Compiler def initialize(file, options = {}) @files = [file] @options = options end private def _run_command "python " << @files[0] end def _build_command end end end end