We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb8c91d commit 7655039Copy full SHA for 7655039
MANIFEST.in
@@ -0,0 +1,3 @@
1
+include README.md
2
+include requirements.txt
3
+include ocrd-tool.json
Makefile
@@ -20,6 +20,7 @@ help:
20
@echo " deps-ubuntu Install required packages for Debian/Ubuntu"
21
@echo " install Install"
22
@echo " install-dev Install in editable mode"
23
+ @echo " build Build source and binary distribution"
24
@echo " docker Build Docker image"
25
@echo " test Run test"
26
@echo " repo/assets Clone OCR-D/assets to ./repo/assets"
@@ -54,6 +55,10 @@ install:
54
55
install-dev:
56
$(PIP) install -e .
57
58
+build:
59
+ $(PIP) install build
60
+ $(PYTHON) -m build .
61
+
62
# Build docker image
63
docker:
64
docker build \
0 commit comments