From 914830879f0811a92a7a25521c0e73d810ef5163 Mon Sep 17 00:00:00 2001 From: anatoly techtonik Date: Thu, 5 Mar 2015 12:59:17 +0300 Subject: [PATCH] Add __main__.py to make package executable This is convenient for running repository version with `python -m psdash` --- psdash/__main__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 psdash/__main__.py diff --git a/psdash/__main__.py b/psdash/__main__.py new file mode 100644 index 0000000..b5eb175 --- /dev/null +++ b/psdash/__main__.py @@ -0,0 +1,3 @@ +from psdash.run import main + +main()