mirror of
https://github.com/qurator-spk/ocrd_repair_inconsistencies.git
synced 2025-06-12 13:19:59 +02:00
add simple Makefile
This commit is contained in:
parent
2a2c97feff
commit
bb925a6a5b
2 changed files with 22 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -104,5 +104,6 @@ venv.bak/
|
|||
.mypy_cache/
|
||||
|
||||
# vim tmp
|
||||
*~
|
||||
*.swp
|
||||
*.swo
|
||||
|
|
21
Makefile
Normal file
21
Makefile
Normal file
|
@ -0,0 +1,21 @@
|
|||
SHELL = /bin/bash
|
||||
PYTHON = python3
|
||||
PIP = pip3
|
||||
|
||||
define HELP
|
||||
cat <<EOF
|
||||
ocrd_repair_inconsistencies
|
||||
|
||||
Targets:
|
||||
deps Install Python dependencies via pip
|
||||
install Install Python package
|
||||
EOF
|
||||
endef
|
||||
export HELP
|
||||
help: ; @eval "$$HELP"
|
||||
|
||||
deps:
|
||||
$(PIP) install -r requirements.txt
|
||||
|
||||
install:
|
||||
$(PIP) install .
|
Loading…
Add table
Add a link
Reference in a new issue