From 975715b020ed004b6eb4e2cb27a779fab0b80eb8 Mon Sep 17 00:00:00 2001 From: PrabhanshuAttri Date: Sun, 15 Jan 2017 21:28:49 +0530 Subject: [PATCH 1/2] version 0.2.6 (added support for eddystone UID) --- PyBeacon/__init__.py | 4 ++-- setup.py | 10 +++++++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/PyBeacon/__init__.py b/PyBeacon/__init__.py index 7881798..51e50d1 100644 --- a/PyBeacon/__init__.py +++ b/PyBeacon/__init__.py @@ -1,6 +1,6 @@ __title__ = 'PyBeacon' -__version__ = '0.2.5' +__version__ = '0.2.6' __build__ = 0x016 __author__ = 'Nirmankarta' __license__ = 'Apache 2.0' -__copyright__ = 'Copyright 2016 Nirmankarta' \ No newline at end of file +__copyright__ = 'Copyright 2016 Nirmankarta' diff --git a/setup.py b/setup.py index 7890f65..4ad08ff 100644 --- a/setup.py +++ b/setup.py @@ -15,9 +15,9 @@ "console_scripts": ['PyBeacon = PyBeacon.PyBeacon:main'] }, - description = 'Python script for scanning and advertising urls over Eddystone-URL.', + description = 'Python package for scanning and advertising Eddystone-URLs and Eddystone-UID.', - long_description = 'Python script for scanning and advertising urls over Eddystone-URL.', + long_description = 'Python package for scanning and advertising Eddystone-URLs and Eddystone-UID.', url = 'https://github.com/nirmankarta/PyBeacon', @@ -52,4 +52,8 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', ], -) \ No newline at end of file + + install_requires = [ + 'enum34' + ], +) From 03ff1c4b2dfe757332a0c3bb10ae48b0111d652c Mon Sep 17 00:00:00 2001 From: PrabhanshuAttri Date: Sun, 15 Jan 2017 21:29:31 +0530 Subject: [PATCH 2/2] version 0.2.7 --- PyBeacon/__init__.py | 2 +- README.md | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/PyBeacon/__init__.py b/PyBeacon/__init__.py index 51e50d1..8ec84f1 100644 --- a/PyBeacon/__init__.py +++ b/PyBeacon/__init__.py @@ -1,5 +1,5 @@ __title__ = 'PyBeacon' -__version__ = '0.2.6' +__version__ = '0.2.7' __build__ = 0x016 __author__ = 'Nirmankarta' __license__ = 'Apache 2.0' diff --git a/README.md b/README.md index 804a594..356b921 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,13 @@ # PyBeacon -Python script for scanning and advertising urls over [Eddystone-URL](https://github.com/google/eddystone/tree/master/eddystone-url/implementations/PyBeacon). +Python package for scanning and advertising [Eddystone-URL and Eddystone-UID](https://github.com/google/eddystone/tree/master/eddystone-url/implementations/PyBeacon). ## Requirements * Python 3.x (Scanning will not work on Python 2.x) * Bluez * sudo apt-get install bluez bluez-hcidump +* Pip Packages + * pip install enum34 ## Installation