feat: image-converter project init

This commit is contained in:
2026-01-05 14:34:45 +01:00
parent 20527c6369
commit 275d53d1dc
32 changed files with 573 additions and 0 deletions

16
image-converter/Makefile Normal file
View File

@@ -0,0 +1,16 @@
install:
echo ">>> Installing dependencies"
pip install --upgrade pip
pip install -r requirements.txt
save:
pip freeze > requirements.txt
run:
python src/main.py
test:
python -m pytest -v
setenv:
python -m venv venv