From 91b3422afaea53596f0fbac0fa7a5f4fea8eeba5 Mon Sep 17 00:00:00 2001 From: Felix Seele Date: Mon, 3 Apr 2017 02:35:18 +0200 Subject: [PATCH] Final fixes --- README.rst | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index e759020..dc64ed2 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/setup.py b/setup.py index c8f2924..de743e5 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ -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, @@ -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: