From 385eb44a712ccab86c0588091c416172e81540b3 Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Wed, 8 Sep 2021 13:31:06 +0200 Subject: [PATCH] Add __main__ to run with -m --- hamstertools/__main__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hamstertools/__main__.py diff --git a/hamstertools/__main__.py b/hamstertools/__main__.py new file mode 100644 index 0000000..9f44afc --- /dev/null +++ b/hamstertools/__main__.py @@ -0,0 +1,5 @@ +#!/usr/bin/env python3.7 + +from . import cli + +cli()