mirror of
https://github.com/Luzifer/mqtt2influx.git
synced 2024-12-20 17:41:22 +00:00
11 lines
173 B
Makefile
11 lines
173 B
Makefile
default:
|
|
|
|
clean:
|
|
rm -rf .venv
|
|
|
|
freeze: testenv
|
|
./.venv/bin/pip freeze >requirements.txt
|
|
|
|
testenv: clean
|
|
python -m venv .venv
|
|
./.venv/bin/pip install -r requirements.txt
|