8 lines
162 B
Python
8 lines
162 B
Python
#! /usr/bin/env python3
|
|
# encoding: utf-8
|
|
|
|
_version = (0, '00000000') # OVER_VERSION_IDENTIFIER
|
|
|
|
rev = _version[0]
|
|
commit = _version[1]
|
|
str = '%d (%s)' %_version
|