From 727ecfeadf09edef520513513be78d7d93221a3b Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Fri, 18 May 2018 11:43:22 -0700 Subject: 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 Closes: #807 Approved by: rhatdan --- contrib/python/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'contrib/python') diff --git a/contrib/python/setup.py b/contrib/python/setup.py index d1533f968..c9db30199 100644 --- a/contrib/python/setup.py +++ b/contrib/python/setup.py @@ -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', -- cgit v1.2.3-54-g00ecf