8 lines
400 B
Python
8 lines
400 B
Python
"version information. replaced with stamped info with each release"
|
|
|
|
# This is automagically replace by git during git archive using `git export-subst`
|
|
# See https://git-scm.com/docs/git-archive/2.29.0#Documentation/git-archive.txt-export-subst
|
|
_VERSION_PRIVATE = "$Format:%(describe:tags=true)$"
|
|
|
|
VERSION = "0.0.0" if _VERSION_PRIVATE.startswith("$Format") else _VERSION_PRIVATE.replace("v", "", 1)
|