From 8737132639f1be0d693bb8f79b1ba1d15eb8ae6b Mon Sep 17 00:00:00 2001 From: GreatBahram Date: Sun, 4 Jul 2021 15:38:30 +0430 Subject: [PATCH] add __main__ to be able to run pycycle -> python3 -m pycycle --- pycycle/__main__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pycycle/__main__.py diff --git a/pycycle/__main__.py b/pycycle/__main__.py new file mode 100644 index 0000000..4cafccb --- /dev/null +++ b/pycycle/__main__.py @@ -0,0 +1,3 @@ +from .cli import cli + +cli()