Save git hex revision in powerline version string if possible
Only useful for `pip install git+git://` or `pip install /some/directory` installations (note: commands come without `--editable`/`-e`).
This commit is contained in:
parent
f0d2f2884e
commit
2106be4066
10
setup.py
10
setup.py
|
@ -52,9 +52,17 @@ except Exception as e:
|
|||
else:
|
||||
can_use_scripts = False
|
||||
|
||||
|
||||
def get_version():
|
||||
try:
|
||||
return 'dev-' + subprocess.check_output(['git', 'rev-parse', 'HEAD'])
|
||||
except Exception as e:
|
||||
return 'dev'
|
||||
|
||||
|
||||
setup(
|
||||
name='powerline-status',
|
||||
version='dev',
|
||||
version=get_version(),
|
||||
description='The ultimate statusline/prompt utility.',
|
||||
long_description=README,
|
||||
classifiers=[
|
||||
|
|
Loading…
Reference in New Issue