diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ff89acd --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +__pycache__ +*.bak diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c011131 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +init: + pip install -r requirements.txt + +test: + python -m unittest -v tests/test_bits.py + +.PHONY: init test + +