You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
EYNOLLAH_MODELS ?= $(PWD)/models_eynollah
|
|
|
|
export EYNOLLAH_MODELS
|
|
|
|
|
|
|
|
# BEGIN-EVAL makefile-parser --make-help Makefile
|
|
|
|
|
|
|
|
help:
|
|
|
|
@echo ""
|
|
|
|
@echo " Targets"
|
|
|
|
@echo ""
|
|
|
|
@echo " models Download and extract models to $(PWD)/models_eynollah"
|
|
|
|
@echo " install Install with pip"
|
|
|
|
@echo " install-dev Install editable with pip"
|
|
|
|
@echo " test Run unit tests"
|
|
|
|
@echo ""
|
|
|
|
@echo " Variables"
|
|
|
|
@echo ""
|
|
|
|
|
|
|
|
# END-EVAL
|
|
|
|
|
|
|
|
|
|
|
|
# Download and extract models to $(PWD)/models_eynollah
|
|
|
|
models: models_eynollah
|
|
|
|
|
|
|
|
models_eynollah: models_eynollah.tar.gz
|
|
|
|
tar xf models_eynollah.tar.gz
|
|
|
|
|
|
|
|
models_eynollah.tar.gz:
|
|
|
|
wget 'https://qurator-data.de/eynollah/2021-04-25/models_eynollah.tar.gz'
|
|
|
|
|
|
|
|
# Install with pip
|
|
|
|
install:
|
|
|
|
pip install .
|
|
|
|
|
|
|
|
# Install editable with pip
|
|
|
|
install-dev:
|
|
|
|
pip install -e .
|
|
|
|
|
|
|
|
smoke-test:
|
|
|
|
eynollah -i tests/resources/kant_aufklaerung_1784_0020.tif -o . -m $(PWD)/models_eynollah
|
|
|
|
|
|
|
|
# Run unit tests
|
|
|
|
test:
|
|
|
|
pytest tests
|