From 165d6e157520213a65f8ef6995e76d75c23ce753 Mon Sep 17 00:00:00 2001 From: theBASTI0N Date: Thu, 30 Jul 2020 12:23:34 +0800 Subject: [PATCH] v0.5 --- beacondecoder | 2 +- setup.py | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/beacondecoder b/beacondecoder index 25bb41c..a3a1a46 160000 --- a/beacondecoder +++ b/beacondecoder @@ -1 +1 @@ -Subproject commit 25bb41cdab201b72b3c53f88d3d2e303c24aaf56 +Subproject commit a3a1a4615f2487f91c942b1299baa13416817ff1 diff --git a/setup.py b/setup.py index 03188f7..d86ad59 100644 --- a/setup.py +++ b/setup.py @@ -1,20 +1,20 @@ -from distutils.core import setup -setup( +import setuptools + +setuptools.setup( name = 'beacondecoder', packages = ['beacondecoder'], - version = '0.4', + version = '0.5.0', license='MIT', description = 'A Python library for decoding certain types of Bluetooth LE Beacons', author = 'theBASTI0N', author_email = 'theBASTI0Ncode@gmail.com', url = 'https://github.com/theBASTI0N/beacon-decoder', - download_url = 'https://github.com/theBASTI0N/beacondecoder/archive/0.4.tar.gz', + download_url = 'https://github.com/theBASTI0N/beacondecoder/archive/0.5.tar.gz', keywords = ['BLE', 'decode', 'iot'], install_requires=[], classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', - 'Topic :: Software Development :: Build Tools', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4',