mirror of
https://github.com/containers/podman.git
synced 2025-07-14 10:09:13 +08:00
Use Version from spec file in setup.py
- If envvar PODMAN_VERSION not set use default version of 0.0.0 Signed-off-by: Jhon Honce <jhonce@redhat.com> Closes: #807 Approved by: rhatdan
This commit is contained in:
@ -11,9 +11,10 @@ with open(os.path.join(root, 'README.md')) as me:
|
||||
with open(os.path.join(root, 'requirements.txt')) as r:
|
||||
requirements = r.read().splitlines()
|
||||
|
||||
|
||||
setup(
|
||||
name='podman',
|
||||
version='0.1.0',
|
||||
version=os.environ.get('PODMAN_VERSION', '0.0.0'),
|
||||
description='A client for communicating with a Podman server',
|
||||
long_description=readme,
|
||||
author='Jhon Honce',
|
||||
|
Reference in New Issue
Block a user