Metadata-Version: 1.1
Name: bittle
Version: 0.2.1
Summary: Simple library to help with bit manipulations.
Home-page: https://github.com/gmjosack/bittle
Author: Gary M. Josack
Author-email: gary@byoteki.com
License: MIT
Download-URL: https://github.com/gmjosack/bittle/archive/master.tar.gz
Description: bittle
        ======
        
        Description
        ~~~~~~~~~~~
        
        Bittle is a simple module to help me to things with bits.
        
        Installation
        ~~~~~~~~~~~~
        
        New versions will be updated to PyPI pretty regularly so it should be as
        easy as:
        
        ::
        
            pip install bittle
        
        Examples
        ~~~~~~~~
        
        ::
        
        
            from bittle import FlagWord
        
            Status = FlagWord(["pending", "approved", "actioned"])
        
            status = Status()
            status.set(status.approved)
            status.has(Status.approved)  # True
            status.has("actioned")  # False
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
