diff --git a/README.md b/README.md index 326f1ec..cda07fd 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# beacon-decoder +# beacondecoder A Python library for decoding the following types of Bluetooth LE Beacons: @@ -6,7 +6,7 @@ Eddystone TLM Ruuvi RAWv2 Ruuvi RAWv1 -The beacon-decoder will parse the packet whether it be a string or the raw packet. It will then check what type of packet and return a dictionary containint the decoded information. +The beacondecoder will parse the packet whether it be a string or the raw packet. It will then check what type of packet and return a dictionary containint the decoded information. It will return 4 formats of data: diff --git a/beacon-decoder/__init__.py b/beacondecoder/__init__.py similarity index 100% rename from beacon-decoder/__init__.py rename to beacondecoder/__init__.py diff --git a/beacon-decoder/decoder.py b/beacondecoder/decoder.py similarity index 100% rename from beacon-decoder/decoder.py rename to beacondecoder/decoder.py diff --git a/setup.py b/setup.py index 4c45255..0bb4453 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +1,14 @@ from distutils.core import setup setup( - name = 'beacon-decoder', - packages = ['beacon-decoder'], - version = '0.2', + name = 'beacondecoder', + packages = ['beacondecoder'], + version = '0.3', 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/beacon-decoder/archive/0.2.tar.gz', + download_url = 'https://github.com/theBASTI0N/beacondecoder/archive/0.3.tar.gz', keywords = ['BLE', 'decode', 'iot'], install_requires=[], classifiers=[