mirror of
https://github.com/qurator-spk/page2tsv.git
synced 2025-06-09 19:39:54 +02:00
17 lines
182 B
Makefile
17 lines
182 B
Makefile
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
|
|
|