olmocr/Makefile
2024-09-17 15:06:59 +00:00

18 lines
341 B
Makefile

.PHONY : docs
docs :
rm -rf docs/build/
sphinx-autobuild -b html --watch pdelfin/ 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/ pdelfin/
.PHONY : build
build :
rm -rf *.egg-info/
python -m build