Makefile 339 Bytes
Newer Older
wanglch's avatar
wanglch committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY : docs
docs :
	rm -rf docs/build/
	sphinx-autobuild -b html --watch olmocr/ docs/source/ docs/build/

.PHONY : run-checks
run-checks :
	isort --check .
	black --check .
	ruff check .
	mypy .
	CUDA_VISIBLE_DEVICES='' pytest -v --color=yes --doctest-modules tests/ olmocr/

.PHONY : build
build :
	rm -rf *.egg-info/
	python -m build