-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsetuptools_git_version.py
48 lines (34 loc) · 1.3 KB
/
setuptools_git_version.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from pkg_resources import get_distribution
from subprocess import check_output
command = 'git describe --tags --long --dirty'
fmt = '{tag}.{commitcount}+{gitsha}'
def validate_version_format(dist, attr, value):
try:
version = check_output(command.split()).decode('utf-8').strip()
except:
version = get_distribution(dist.get_name()).version
else:
version = format_version(version=version, fmt=value)
dist.metadata.version = version
def format_version(version, fmt=fmt):
parts = version.split('-')
assert len(parts) in (3, 4)
dirty = len(parts) == 4
tag, count, sha = parts[:3]
if count == '0' and not dirty:
return tag
return fmt.format(tag=tag, commitcount=count, gitsha=sha.lstrip('g'))
def get_git_version():
git_version = check_output(command.split()).decode('utf-8').strip()
return format_version(version=git_version)
if __name__ == "__main__":
# determine version from git
git_version = get_git_version()
# monkey-patch `setuptools.setup` to inject the git version
import setuptools
original_setup = setuptools.setup
def setup(version=None, *args, **kw):
return original_setup(version=git_version, *args, **kw)
setuptools.setup = setup
# import the packages's setup module
import setup