From e3c3518a97ed24fbfd83f3ead7be35c312d4de2a Mon Sep 17 00:00:00 2001 From: Paul Malmsten Date: Wed, 11 Aug 2010 16:39:22 -0700 Subject: [PATCH] Version 1.9.1 --- CHANGES.txt | 7 +++++++ MANIFEST.in | 4 +++- README.txt | 23 +++++------------------ setup.py | 2 +- 4 files changed, 16 insertions(+), 20 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 7fbaff6..1bfe0d9 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -35,3 +35,10 @@ v1.9.0 7/10/10 -- Implemented Dispatch helper as xbee.helpers.dispatch If it is not installed, the tests will be skipped and a warning will be generated. * A 'test' command has been added to setup.py +v1.9.1 8/11/10 -- Added support for I/O sample data packet with 64-bit + addressing. + Fixed bug where threading.Thread library was not + properly initalized in all use cases. + Added initial documentation. + Properly included distutils_extensions.py in source + distribution archives diff --git a/MANIFEST.in b/MANIFEST.in index b8e7065..74283ae 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,6 @@ include *.txt -recursive-include docs *.txt +include *.py +recursive-include docs *.* recursive-include examples *.txt *.py recursive-include scripts *.py +global-exclude *.swp diff --git a/README.txt b/README.txt index d6816a2..81dfe6a 100644 --- a/README.txt +++ b/README.txt @@ -51,27 +51,14 @@ one from using a potentially broken build. In this event, one may comment out the 'strict' flag in setup.cfg in order to force the installation to proceed. Do so at your own risk. -Usage -============ - -Series 1, Series 2 ------------------- - -To use this library with an XBee device, import the class -XBee and call its constructor with a serial port object. - -In order to send commands via the API, call a method with the same -name as the command which you would like to send with words separated -by _'s. For example, to send a Remote AT command, one would call -remote_at(). +Documentation +============= -The arguments to be given to each method depend upon the command to be -sent. For more information concerning the names of the arguments which -are expected and the proper data types for each argument, consult the -API manual for your XBee device, or consult the source code. +Open the file docs/build/html/index.html in your web browser of choice +to view the documentation for this package. Caveats ---------- +======= Escaped API operation has not been implemented at this time. diff --git a/setup.py b/setup.py index a65534c..ad0d18c 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='XBee', - version='1.9.0', + version='1.9.1', author='Paul Malmsten', author_email='pmalmsten@gmail.com', packages=packages,