Bump version
[munter.git] / munter.py
1 #! /usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 """Wrapper for running directly from the source code directory"""
5 import sys
6 from munter.munter import main
7
8 if __name__ == "__main__":
9 sys.exit(main())