First stab at setuptools
[munter.git] / munter.py
diff --git a/munter.py b/munter.py
new file mode 100755 (executable)
index 0000000..485db19
--- /dev/null
+++ b/munter.py
@@ -0,0 +1,9 @@
+#! /usr/bin/env python
+# -*- coding: utf-8 -*-
+
+"""Wrapper for running directly from the source code directory"""
+import sys
+from munter.munter import main
+
+if __name__ == "__main__":
+    sys.exit(main())