1
0
Fork 0
mirror of https://github.com/qurator-spk/page2tsv.git synced 2025-06-09 03:19:55 +02:00
page2tsv/Makefile

18 lines
182 B
Makefile
Raw Normal View History

deps:
pip install -r requirements.txt
deps-test:
pip install -r requirements-test.txt
test:
pytest tests
install:
pip install .
install-dev:
pip install -e .
.PHONY: test