over/over/version.py
Martinez d0fd7e90c5 - minor changes
- add Exception.description property support
- add a few sanity checks to over.app.Main
- added top-level stack frame display to over.app.Main.exception_handler
- the command line parser is now usable :)
2016-05-16 00:27:08 +02:00

8 lines
230 B
Python

#! /usr/bin/env python3
# encoding: utf-8
major = 0 # VERSION_MAJOR_IDENTIFIER
minor = 0 # VERSION_MINOR_IDENTIFIER
# VERSION_LAST_MM 0.0
patch = 4 # VERSION_PATCH_IDENTIFIER
str = ".".join(str(v) for v in (major, minor, patch))