From c8b28c7ebd3ce690b1448d2bc094978e392dabb0 Mon Sep 17 00:00:00 2001 From: Alexandre Possebom Date: Fri, 26 Sep 2014 12:53:09 -0300 Subject: [PATCH] Added main file to call with python -m twik --- twik/__main__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 twik/__main__.py diff --git a/twik/__main__.py b/twik/__main__.py new file mode 100644 index 0000000..e38214e --- /dev/null +++ b/twik/__main__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- + + +from .twik import main +main()