summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gemato17
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))