add gitignore and Makefile

This commit is contained in:
S Groesz 2020-10-06 23:32:42 +00:00
parent f6d150545c
commit 75429cfe4b
2 changed files with 11 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
__pycache__
*.bak

9
Makefile Normal file
View File

@ -0,0 +1,9 @@
init:
pip install -r requirements.txt
test:
python -m unittest -v tests/test_bits.py
.PHONY: init test