Metadata-Version: 1.1
Name: BT-Manager
Version: 0.3.0
Summary: Python-based Bluetooth Device Management
Home-page: https://github.com/liamw9534/bt-manager
Author: Liam Wickins
Author-email: liamw9534@gmail.com
License: Apache License, Version 2.0
Description: ****************************
        BT-Manager
        ****************************
        
        .. image:: https://pypip.in/version/BT-Manager/badge.png?update
            :target: https://pypi.python.org/pypi/BT-Manager/
            :alt: Latest PyPI version
        
        .. image:: https://pypip.in/download/BT-Manager/badge.png?update
            :target: https://pypi.python.org/pypi/BT-Manager/
            :alt: Number of PyPI downloads
        
        .. image:: https://travis-ci.org/liamw9534/bt-manager.png?branch=master
            :target: https://travis-ci.org/liamw9534/bt-manager
            :alt: Travis CI build status
        
        .. image:: https://coveralls.io/repos/liamw9534/bt-manager/badge.png?branch=master
           :target: https://coveralls.io/r/liamw9534/bt-manager?branch=master
           :alt: Test coverage
        
        A library for managing bluetooth devices using Python, Bluez and DBus.
        
        Installation
        ============
        
        Installing the RTP/SBC codec (this must be done first):
        
            sudo make -C codecs install
        
        Note: the default platform is x86 (mmx).  To build for a different platform e.g., armv6
        then run ``sudo make -C codecs install PLATFORM=armv6`` instead.
        
        Install the python library by running:
        
            pip install BT-Manager
        
        
        Documentation
        =============
        
        Documentation is hosted at https://pythonhosted.org/BT-Manager
        
        
        Project resources
        =================
        
        - `Source code <https://github.com/liamw9534/BT-Manager>`_
        - `Issue tracker <https://github.com/liamw9534/BT-Manager/issues>`_
        - `Download development snapshot <https://github.com/liamw9534/BT-Manager/archive/master.tar.gz#egg=BT-Manager-dev>`_
        
        
        Changelog
        =========
        
        v0.3.0
        ------
        
        Bug fix for issue #1 causing erroneous signal receiver notifications.
        
        v0.2.0
        ------
        
        Added support for:
        
        - BTInput (org.bluez.Input)
        
        v0.1.0
        ------
        
        Initial release supporting Bluez 4.x dbus API with following interfaces:
        
        - BTManager (org.bluez.Manager)
        - BTAdapter (org.bluez.Adapter)
        - BTDevice (org.bluez.Device)
        - BTMedia (org.bluez.Media)
        - BTMediaTransport (org.bluez.MediaTransport)
        - BTAudioSource (org.bluez.AudioSource)
        - BTAudioSink (org.bluez.AudioSink)
        
        Services:
        
        - BTAgent (org.bluez.Agent)
        - SBCAudioSink (org.bluez.MediaEndpoint): endpoint/transport for connecting A2DP SBC source
        - SBCAudioSource (org.bluez.MediaEndpoint): endpoint/transport for connecting A2DP SBC sink
        
        Other:
        
        - UUID decoding for identifying supported services
        - Class of device decoding to device service, major and minor classes
        - Device vendors codes and names for device vendor decoding
        - Audio codec types and SBC codec configuration attributes
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Communications
