From dba80fc6b1bb026637a85eea31cfcc5ab4a3344c Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Sun, 22 Jan 2023 20:20:55 +0100 Subject: Add a __main__ module to call the package conveniently MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- gemato/__main__.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 gemato/__main__.py 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() -- cgit v1.2.3