From b7cd25cb4636dbea45ef32da2d9bb092578c5cca Mon Sep 17 00:00:00 2001 From: Davide Depau Date: Sun, 28 Jan 2018 01:48:45 +0100 Subject: [PATCH] Make package executable --- callmebyyourbot/__main__.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 callmebyyourbot/__main__.py diff --git a/callmebyyourbot/__main__.py b/callmebyyourbot/__main__.py new file mode 100644 index 0000000..031df43 --- /dev/null +++ b/callmebyyourbot/__main__.py @@ -0,0 +1,2 @@ +from . import main +main()