# HG changeset patch # User jpetteng # Date 1515603406 18000 # Node ID b35d91bc0eadbab67a8d398fda458334b1dd448c # Parent ec569c3c11e2b64ee866f33eae34aebfc13ea451 Uploaded diff -r ec569c3c11e2 -r b35d91bc0ead ectyper --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ectyper Wed Jan 10 11:56:46 2018 -0500 @@ -0,0 +1,13 @@ +#!/usr/bin/env python + +""" + Shell program for ectyper +""" +import sys +import os +sys.path.append(os.path.join(os.path.dirname(__file__), "..")) + +from ectyper import ectyper + +if __name__=='__main__': + ectyper.run_program()