Skip to content

Commit

Permalink
Merge pull request #6 from nirmankarta/dev
Browse files Browse the repository at this point in the history
Added Eddystone-UID dependencies.
  • Loading branch information
PrabhanshuAttri authored Jan 15, 2017
2 parents cb0d567 + 03ff1c4 commit 2bcf62f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions PyBeacon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = 'PyBeacon'
__version__ = '0.2.5'
__version__ = '0.2.7'
__build__ = 0x016
__author__ = 'Nirmankarta'
__license__ = 'Apache 2.0'
__copyright__ = 'Copyright 2016 Nirmankarta'
__copyright__ = 'Copyright 2016 Nirmankarta'
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',

Expand Down Expand Up @@ -52,4 +52,8 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)

install_requires = [
'enum34'
],
)

0 comments on commit 2bcf62f

Please sign in to comment.