From bb5dc8848d6b1205fc30cbb0ecce32e4544058eb Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Thu, 14 Feb 2019 13:19:16 +0000 Subject: [PATCH] Add entry point --- Pipfile | 3 +++ actioner/__main__.py | 1 + 2 files changed, 4 insertions(+) create mode 100644 actioner/__main__.py diff --git a/Pipfile b/Pipfile index 9c7ae7b..50bb2e6 100644 --- a/Pipfile +++ b/Pipfile @@ -9,3 +9,6 @@ verify_ssl = true [requires] python_version = "3.5" + +[scripts] +start = "python3 actioner/__main__.py" diff --git a/actioner/__main__.py b/actioner/__main__.py new file mode 100644 index 0000000..54cf98d --- /dev/null +++ b/actioner/__main__.py @@ -0,0 +1 @@ +print("Main")