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

drop support for scaling, not necessary for SBB use case anymore

This commit is contained in:
Konstantin Baierer 2022-05-30 14:29:01 +02:00
parent fe4a1eabb1
commit 60a07c6310
5 changed files with 31 additions and 19 deletions

17
Makefile Normal file
View file

@ -0,0 +1,17 @@
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