diff --git a/swh/__main__.py b/swh/__main__.py new file mode 100644 --- /dev/null +++ b/swh/__main__.py @@ -0,0 +1,5 @@ +# provides the main swh cli entry point from standard 'python -m swh' +if __name__ == "__main__": + from swh.core.cli import main + + main()