From b93ac6c1092458fd44732433f5a8a37b253c630c Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Thu, 26 Oct 2017 20:33:18 +0200 Subject: Initial CLI for verification --- bin/gemato | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 bin/gemato (limited to 'bin') diff --git a/bin/gemato b/bin/gemato new file mode 100755 index 0000000..93eda61 --- /dev/null +++ b/bin/gemato @@ -0,0 +1,17 @@ +#!/usr/bin/env python +# vim:fileencoding=utf-8 +# (c) 2017 Michał Górny +# Licensed under the terms of 2-clause BSD license + +import logging +import os.path +import sys + +sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..')) + +from gemato.cli import main + + +if __name__ == '__main__': + logging.getLogger().setLevel(logging.INFO) + sys.exit(main(sys.argv)) -- cgit v1.2.3