Metadata-Version: 1.0
Name: binstr
Version: 1.0
Summary: Utility functions for strings of binary digits
Home-page: UNKNOWN
Author: David McEwan
Author-email: dmcewa15@caledonian.ac.uk
License: GLPv3
Description: 
        Binstr - A collection of utility functions for creating and operating on
                 strings of binary digits. It is compatible with Python versions >2.6
                 including 3.x.
                 It is useful to use these functions to make small bugs in your code
                 easier to find since all inputs are checked thoroughly for errors
                 using assertions.
        
        Includes:
        int_to_b()  - Convert a positive integer to a sting of binary
                      e.g. int_to_b(5) -> '00000101'
        frac_to_b() - Convert a positive fraction to a string of binary
                      e.g. frac_to_b(0.5) -> '10000000'
        
        b_and()  - Perform a bitwise AND
        b_or()   - Perform a bitwise OR
        b_xor()  - Perform a bitwise XOR
        b_nand() - Perform a bitwise NAND
        b_nor()  - Perform a bitwise NOR
        b_nxor() - Perform a bitwise NXOR
        b_not()  - Perform a bitwise NOT (inversion)
        
        b_add()  - Perform an ADD operation
        b_mul()  - Perform a MUL operation (multiply)
Platform: Python >2.6 including 3.x (OS Independent)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Development Status :: 5 - Production/Stable
