diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-10-26 20:33:18 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-10-26 20:33:18 +0200 |
commit | b93ac6c1092458fd44732433f5a8a37b253c630c (patch) | |
tree | a37387bc0ddc2be805d47f33fa8e20259171f0cb /bin | |
parent | 1e46acf2e17097dbe515061270f41ff7d0e187de (diff) | |
download | gemato-b93ac6c1092458fd44732433f5a8a37b253c630c.tar.gz |
Initial CLI for verification
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/gemato | 17 |
1 files changed, 17 insertions, 0 deletions
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)) |