blob: 1b326e76848337b3b62061b1d523d02af97f50bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Use git repo data (latest tag, current commit hash, etc) for building
a version number according PEP 440.
Features:
* Does not require to change source code of the project
* Tag-, file-, and callback-based versioning schemas are supported
* Templates for tag, dev and dirty versions are separated
* Templates support a lot of substitutions including git and
environment information
* Well-documented
NOTE: Will need to have PYTHONPATH set to use as slackware's tomli
package is too old and may cause problems. It will need to see
python3-tomli-opt. (only needed for python <3.11)
PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])')
export PYTHONPATH=/opt/python$PYVER/site-packages
|