mirror of
https://github.com/qurator-spk/page2tsv.git
synced 2025-06-09 11:29:55 +02:00
18 lines
182 B
Makefile
18 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
|
||
|
|