Metadata-Version: 1.1
Name: bautils
Version: 0.1.2
Summary: Utils for the Python bitarray module
Home-page: https://gitlab.com/TC01/python-bautils
Author: Ben Rosser
Author-email: rosser.bjr@gmail.com
License: MIT
Description: python-bautils
        ==============
        
        bautils is a Python module implementing some useful helper functions for
        working with the Python
        `bitarray <https://pypi.python.org/pypi/bitarray/>`__ module.
        Specifically, bautils supports adding (and, coming soon) other basic
        arithmetic operations on bitarrays as if they were arbitrary length
        binary numbers, something the bitarray package itself doesn't seem to
        support.
        
        It also contains helper methods to convert between the binary arrays in
        the pure Python bitstring module
        
        I opted to put these functions in a new module; none are terribly
        complicated to implement, so they're essentially just a set of
        convenient wrappers.
        
        Unit tests are also a work in progress.
        
        Changelog:
        ==========
        
        This logs changes starting from version 0.1.1.
        
        Version 0.1.2
        ~~~~~~~~~~~~~
        
        -  Adds unit tests for left and right shift functions.
        -  Fixes bug where left/right shifts modified their input.
        
        Credits, Legal
        ==============
        
        bautils is written by Ben Rosser rosser.bjr@gmail.com, and is released
        under the MIT License (see LICENSE file).
        
Keywords: bitarray binary bitstring
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
