Skip to content

Commit

Permalink
Final fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
citruz committed Apr 3, 2017
1 parent b6d9d09 commit 91b3422
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Scanner
Changelog
---------

* 0.1 - Initial release
* 0.1.2 - Initial release


.. |Build Status| image:: https://travis-ci.org/citruz/beacontools.svg?branch=master
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Setup module for beacontools."""

from setuptools import setup
from setuptools import setup, find_packages
from codecs import open
from os import path

Expand All @@ -12,7 +12,7 @@
setup(
name='beacontools',

version='0.1',
version='0.1.2',

description='A Python library for working with various types of Bluetooth LE Beacons.',
long_description=long_description,
Expand Down Expand Up @@ -42,7 +42,7 @@

keywords='beacons ibeacon eddystone bluetooth low energy ble',

packages=['beacontools'],
packages=find_packages(exclude=['contrib', 'docs', 'tests']),

# Alternatively, if you want to distribute just a my_module.py, uncomment
# this:
Expand Down

0 comments on commit 91b3422

Please sign in to comment.