summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gemato/__main__.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/gemato/__main__.py b/gemato/__main__.py
new file mode 100644
index 0000000..0697bc1
--- /dev/null
+++ b/gemato/__main__.py
@@ -0,0 +1,9 @@
+# gemato: __main__ wrapper
+# (c) 2023 Michał Górny
+# Licensed under the terms of 2-clause BSD license
+
+from gemato.cli import setuptools_main
+
+
+if __name__ == '__main__':
+ setuptools_main()