This commit is contained in:
Martinez 2017-11-12 22:12:09 +01:00
commit 7e93ffe71f
4 changed files with 150 additions and 0 deletions

8
version.py Normal file
View file

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