I'm trying to create a python package with the following python setup.py bdist_wheel. The wheel file is generated under my_py_lib-0.0.2.dev19-py2.py3-none-any.whl. The semantic version is appearing as 0.0.2.dev19. However the dev19 is also appearing. How do i remove this value if dev19 ?
Relevant files are given below
setup.py file below
import setuptools
setuptools.setup(
setup_requires=['pbr>=1.9', 'setuptools>=17.1'],
pbr=True
)
setup.cfg file's relevant sections below
[metadata]
name = my-py-lib
version = 0.0.2
author = My Name
author_email = tbd@tbd.com
summary = tbd
description_file = README.md
license = Apache-2
home_page = https://git-loc.tbd/group/my-py-lib
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Operating System :: Unix
Programming Language :: Python :: 3.6
[options]
include_package_data = true
zip_safe = false
install_requires = requests;pprintpp;
[files]
packages = my-py-lib
[bdist_wheel]
universal = 1