diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..d40b49e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,15 @@ +[bumpversion] +current_version = 0.2.0 +tag = True +tag_name = v{new_version} + +[bdist_wheel] +universal = 1 + +[bumpversion:file:setup.py] + +[coverage:run] +source = btsocket, examples + +[metadata] +license_files = LICENSE diff --git a/setup.py b/setup.py index d987fa6..3352bbe 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='0.1.0', + version='0.2.0', description='Python library for BlueZ Bluetooth Management API', long_description=long_description,