over/over/version.py
Martinez 5b4958e1e2 add over.text.count_leading
add indent support to over.text.Output
2016-05-15 00:28:13 +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 = 2 # VERSION_PATCH_IDENTIFIER
str = ".".join(str(v) for v in (major, minor, patch))