Metadata-Version: 2.1
Name: bitstore
Version: 0.0.1
Summary: This library contains functions to create, interpret and manipulate sequences of bits stored in integers.
Home-page: https://github.com/JesperGlas/jgbitlib
Author: Jesper Glas
Author-email: jesper.glas@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: check-manifest (>=0.45) ; extra == 'dev'
Requires-Dist: pytest (>=6.1.2) ; extra == 'dev'
Requires-Dist: twine (>=3.2.0) ; extra == 'dev'

# bitstore

This python3 library contains functions to create, interpret and manipulate sequences of bits stored in integers.

## Installation
To install this library just run the following code in you python3 venv:
pip3 install -e .

## Usage

# Development

To install dev dependencies run the following command in your venv:
pip3 install -e '.[dev]'

## Testing
To test the code simply run the following command in your python3 venv:
python3 -m pytest


