git @ Cat's Eye Technologies kinoje / master bin / kinoje-compile
master

Tree @master (Download .tar.gz)

kinoje-compile @masterraw · history · blame

#!/usr/bin/env python

from os.path import realpath, dirname, join
import sys

sys.path.insert(0, join(dirname(realpath(sys.argv[0])), '..', 'src'))

from kinoje import compiler


if __name__ == '__main__':
    compiler.main()