-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Eddystone URL issue. URL output would often be TLD prefix.
- Loading branch information
1 parent
4716dcb
commit b3fad56
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,13 @@ | |
setuptools.setup( | ||
name = 'beacondecoder', | ||
packages = ['beacondecoder'], | ||
version = '0.7.5', | ||
version = '0.7.7', | ||
license='MIT', | ||
description = 'A Python library for decoding specific types of Bluetooth LE Beacons', | ||
description = 'A Python library for decoding most types of Bluetooth LE Beacons', | ||
author = 'theBASTI0N', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/theBASTI0N/beacon-decoder', | ||
download_url = 'https://github.com/theBASTI0N/beacondecoder/archive/0.7.5.tar.gz', | ||
download_url = 'https://github.com/theBASTI0N/beacondecoder/archive/0.7.7.tar.gz', | ||
keywords = ['BLE', 'decode', 'iot'], | ||
install_requires=[], | ||
classifiers=[ | ||
|