README.md updated with minimal tests

This commit is contained in:
philippe lhardy
2025-07-03 14:40:59 +02:00
parent 48649872f4
commit 748e76ef84
6 changed files with 70 additions and 8 deletions

22
Makefile Normal file
View File

@@ -0,0 +1,22 @@
help:
cat INSTALL.md
make --print-targets
code/bin/activate:
python3 -m venv code
python_dependencies: code/bin/activate
setup_dev: python_dependencies
cd code; bin/pip3 install git+https://github.com/MieuxVoter/majority-judgment-library-python
clean:
echo "TODO"
tests:
cd samples;./tests.sh
.PHONY: clean setup_dev python_dependencies help tests